Contact: aviboots(AT)netvision.net.il
41,260 questions
53,769 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 */