Advertisement
Guest User

Untitled

a guest
Sep 5th, 2011
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. #define MAX 10
  5. static int table[MAX];
  6.  
  7. int main()
  8. {
  9. printf("table: %x, table[-3]: %x, (table-3):%x\n", table, &table[-3], (table-3));
  10. return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement