14 lines
169 B
C
14 lines
169 B
C
|
|
#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;
|
||
|
|
}
|