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
Ranked #72.8K
Ranked #4K
~934 People Reached
Favorite Forums
Favorite Tags
c x 2

2 Posted Topics

Member Avatar for harshchandra

[QUOTE=harshchandra;107840]is there anyway to print out any string on stdout without using semicolon at the end... ?? plzz reply[/QUOTE] If you want to just output anything without semicolon at the end ...then u can simply shift the semicolon to the next line i.e 1.printf("hello world") 2.; // semicolon is used …

Member Avatar for Nick Evan
0
427
Member Avatar for danysabin

[QUOTE=Aia;399898][code=C]/* * r_ascii.c */ #include <stdio.h> #include <stdlib.h> #include <time.h> #define MAX 126 #define MIN 33 int randy( int max, int min ) { int r_num; do { r_num = rand(); } while ( r_num < min || r_num > max ); return r_num; } int main( void ) { …

Member Avatar for danysabin
0
507

The End.