fork(2) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char z[] = "World";
  5. char n[] = "Something";
  6. char *x = "Hello!!";
  7.  
  8.  
  9. while(*x) printf("%c", *x++);
  10. printf("\n");
  11. x = z;
  12. while(*x) printf("%c", (*x)++);
  13. printf("\n");
  14. x = n;
  15. while(*x) printf("%c", *(x)++);
  16. printf("\n");
  17. return 0;
  18. }
  19.  
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
Hello!!
WXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�����������������������������������������������������������������������������������������������������������������������������
Something