home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / s / snip1292.zip / WEIRD.C < prev    next >
C/C++ Source or Header  |  1990-09-03  |  272b  |  14 lines

  1. #include<stdio.h>
  2.  
  3. char *c[] = { "ENTER", "NEW", "POINT", "FIRST" };
  4. char **cp[] = { c+3, c+2, c+1, c };
  5. char ***cpp = cp;
  6.  
  7. main()
  8. {
  9.     printf("%s", **++cpp);
  10.     printf("%s ", *--*++cpp+3);
  11.     printf("%s", *cpp[-2]+3);
  12.     printf("%s\n", cpp[-1][-1]+1);
  13. }
  14.