fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main() {
  5. char str[] ="hello, world";
  6. puts("2. ");
  7. puts(str);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0.01s 5324KB
stdin
Standard input is empty
stdout
2. 
hello, world