Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums
Favorite Tags

6 Posted Topics

Member Avatar for ratul

[QUOTE]but if I want to check the process by using process names then what to do?[/QUOTE] if i correctly understand your goal, this code is what you need: # get processes names my @ps = `ps aux`; # for example, is perl running? while ( my $ps = shift @ps …

Member Avatar for BobUillean
0
133
Member Avatar for cerf_machine

Hi everyone! Can i read audio bytes from user's mic thru java applet and save it on server as .wav or any other format? Is it possible? Thanks.

Member Avatar for cerf_machine
0
97
Member Avatar for ranadheer
Member Avatar for masijade
0
128
Member Avatar for pkraop

[QUOTE=pkraop;452016]no.,can u please suggest any docs[/QUOTE] [url]http://perldoc.perl.org/functions/open.html[/url] for example, your code should be like the following: [code=Perl] foreach ( @main_time ) { open FH, ">>$file_name" or die "can't open '$file_name': $!"; print FH $_; close FH; } [/code]

Member Avatar for KevinADC
0
2K
Member Avatar for gaggu82

the full +=, = and + operators overloading examples: [code=c++] class str { char * data; int length; public: str ( const char * _data ) { length = strlen ( _data ); data = new char[ length + 1 ]; strcpy ( data, _data ); } ~str () { …

Member Avatar for cerf_machine
0
83
Member Avatar for Heleo~18

this loop [code=c++] for(i=1; i<=h; i++) { cout<<"Enter numbers: "; cin>>b; } [/code] is overwrites b, so here [code=c++] for(r=1; r<=h; r++) { HP = b / N; l=HP*N; m=b-l; cout<<m<<endl; } [/code] you've got the last b value. maybe you better put values in int array, not in int …

Member Avatar for cerf_machine
0
94

The End.