Contact: aviboots(AT)netvision.net.il
39,974 questions
51,918 answers
573 users
#include <iostream> int main() { int *arr[5]; for(auto &addr : arr) { std::cout << &addr << "\n"; } } /* run: 0x7ffc62490fc0 0x7ffc62490fc8 0x7ffc62490fd0 0x7ffc62490fd8 0x7ffc62490fe0 */