#include using namespace std; int main() { //Almost same as int* ptr but can only //point to a block of 5 integers int (*ptr1)[5] ; //An array of 5 pointers int *ptr2[5] ; int x1 = 100 ; int arr1[5]={ 1, 2, 3, 4, 5 } ; ptr1 = &arr1 ; ptr2[0] = &x1 ; return 0; }