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