#include int main(void) { char c = 0x00; c = fgetc(stdin); while (!feof(stdin)) { c = toupper(c); printf("%c", c); c = fgetc(stdin); } return 0; }