#include <stdio.h>
int main(int argc, char *argv[]) { char *c[] = { "two", "enter", "hell","harold" };
char **cp[] = { c + 3, c, c + 2, c + 1 };
char ***cpp = cp;
printf("%s", *cpp[2]); printf("%s ", **++cpp + 2); printf("%s", **cpp + 1); printf("%s", *cpp[2] + 4); printf("%s\n", cpp[1][1] + 4);
printf("I will be going down by train on the wednesday" "for Linux Expo. Anybody else who wants to " "coordinate trains as go down as a group?");
return 0; }
__________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.mail.yahoo.com/