fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char x[] = "one\0\0\0two\0three";
  5. printf("%s %s %s\n", x, x+6, x+10);
  6. return 0;
  7. }
  8.  
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
one two three