Ahh.. Chewww!
shares everything with u
Saturday, April 12, 2008
Bug Fixing
#include <stdio.h>
int main(void)
{
int ch;
while ((ch = getchar()) != EOF)
putchar(ch);
putchar('\n');
return 0;
}
Can anyone help me with this?
1 comments:
Mark Michael
said...
change
int ch;
by:
char ch;
4/12/08 11:46 PM
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
1 comments:
change
int ch;
by:
char ch;
Post a Comment