Advertisement
Guest User

adam

a guest
Mar 16th, 2012
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. static const int foo[] = { (7, 7), 8 };
  4. static const int bar[] = { (7), 8 };
  5.  
  6. int main(int argc, const char *argv[])
  7. {
  8. int foobar[] = { (5, 5), 6 };
  9. int barfoo[] = { (5), 6 };
  10.  
  11. printf("foo0=%d\tbar0=%d\n", foo[0], bar[0]);
  12. printf("foobar0=%d\tbarfoo0=%d\n", foobar[0], barfoo[0]);
  13.  
  14. return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement