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.
2 Posted Topics
Re: [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 … | |
Re: [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 ) { … |
The End.