Advertisement
Guest User

a[0] = 0[a]

a guest
May 20th, 2012
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.12 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main() {
  4.   int a[2] = {11, 12};
  5.   printf("hello\n");
  6.   printf("%d\n", 1[a]); // output: 12
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement