fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. char c[20];
  5. c[0]= 'J';
  6. c[1]= 'o';
  7. c[2]= 'H';
  8. c[3]= 'N';
  9. c[4]= '\0';
  10. printf("%s",c);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
JoHN