fork download
  1. #include <stdio.h>
  2. int main()
  3. { int k;
  4. char s[12]={'H','o','w',' ','a','r','e',' ','y','o','u','?'};
  5. for (k=0;k<12;k++)
  6. putchar(s[k]);
  7. return 0;
  8. }
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
How are you?