fork download
  1. #include <stdio.h>
  2. int main(void)
  3. {
  4. char c;
  5. c = 'm';
  6. printf("%c", c);
  7. c = 'a';
  8. printf("%c", c);
  9. c = 'i';
  10. printf("%c", c);
  11. c = 'n';
  12. printf("%c", c);
  13. c = '(';
  14. printf("%c", c);
  15. return 0;
  16. }
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
main(