fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. // Prints ASCII codes
  6.  
  7.  
  8.  
  9.  
  10. {
  11. char c1 = 'H';
  12. char c2 = 'I';
  13. char c3 = '!';
  14. printf("%i %i %i\n", c1, c2, c3);
  15. }
  16. // return 0;
  17. }
  18.  
Success #stdin #stdout 0s 4496KB
stdin
Standard input is empty
stdout
72 73 33