@@ -0,0 +1,13 @@
#include <stdio.h>
int main(void)
{
char c = 0x00;
c = fgetc(stdin);
while (!feof(stdin)) {
c = toupper(c);
printf("%c", c);
}
return 0;
The note is not visible to the blocked user.