29 Jun
2001
29 Jun
'01
10:29 a.m.
#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/
9033
Age (days ago)
9033
Last active (days ago)
0 comments
1 participants
participants (1)
-
David Freeman