- #include <stdio.h>
- static const int foo[] = { (7, 7), 8 };
- static const int bar[] = { (7), 8 };
- int main(int argc, const char *argv[])
- {
- int foobar[] = { (5, 5), 6 };
- int barfoo[] = { (5), 6 };
- printf("foo0=%d\tbar0=%d\n", foo[0], bar[0]);
- printf("foobar0=%d\tbarfoo0=%d\n", foobar[0], barfoo[0]);
- return 0;
- }
SHARE
TWEET
adam
a guest
Mar 16th, 2012
19
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
RAW Paste Data

