/* * comp2.c */ #include #define BYE puts("---Program execution is complete!"); int main(void) { char ch; while ( (ch=getchar()) != EOF) { putchar(toupper(ch)); } BYE return 0; }