Contact: aviboots(AT)netvision.net.il
39,974 questions
51,918 answers
573 users
#include <stdio.h> int main() { int *arr[5]; for (int i = 0; i < 5; i++) { printf("%p\n", &arr[i]); } } /* run: 0x7ffdf0755cc0 0x7ffdf0755cc8 0x7ffdf0755cd0 0x7ffdf0755cd8 0x7ffdf0755ce0 */