Skip to content

Instantly share code, notes, and snippets.

@lewtds
Created November 2, 2012 07:13
Show Gist options
  • Save lewtds/3999193 to your computer and use it in GitHub Desktop.
Save lewtds/3999193 to your computer and use it in GitHub Desktop.
EOF
#include <stdio.h>
#include <ctype.h>
int main() {
int c;
while ((c = getchar()) != EOF) {
putchar(toupper(c));
}
return 0;
}
#include <stdio.h>
#include <ctype.h>
int main() {
int c;
while (1) {
c = getchar();
putchar(toupper(c));
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment