14 lines
169 B
C
Executable File
14 lines
169 B
C
Executable File
#include <stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
char c = 0x00;
|
|
c = fgetc(stdin);
|
|
while (!feof(stdin)) {
|
|
c = toupper(c);
|
|
printf("%c", c);
|
|
c = fgetc(stdin);
|
|
}
|
|
return 0;
|
|
}
|