fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char ch;
  5. ch=getchar();
  6. ch=ch-32;
  7. putchar(ch);
  8. putchar('\n');
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 5280KB
stdin
v
stdout
V