daily pastebin goal
48%
SHARE
TWEET

adam

a guest Mar 16th, 2012 19 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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. }
RAW Paste Data
Pastebin PRO WINTER Special!
Get 40% OFF Pastebin PRO accounts!
Top