/* * comp1.c */ int main(void) { char ch; while( (ch=getchar() != EOF ) { putchar( toupper(ch) ); } return 0; }