#include using namespace std; int main() { int array[] = {40, 15, 23, 71}; int *p = (array + 2); cout << array; return 0; }
As we counted to print only arr, it will print the address of the array.
Previous Question Next Question
Your comments will be displayed only after manual approval.