fork(1) download
  1. #include <stdio.h>
  2.  
  3. char *c[] = { "OLD", "WALLOW", "HERE", " SWORE" };
  4. char **cp[] = { c+3, c+2, c+1, c };
  5. char ***cpp = cp;
  6.  
  7. int main() {
  8. printf("%.2s", **++cpp);
  9. printf("%.3s ", **++cpp+2);
  10. printf("%.3s", cpp[1][3]+2);
  11. printf("%s", *cpp[1]+1);
  12. printf("%c\n", *(*cpp[-2])+1);
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0s 3412KB
stdin
Standard input is empty
stdout
HELLO WORLD!