printf("Value of at postion 3 of the array is:- %d\n",arr[3]); printf("The address of the first element of the array is: %d\n", &arr[0]); // both line 18 and 19 are ...
In the world of programming, a pointer is a mysterious existence. It's not just a variable, but a special variable that stores the memory address of another variable. In C++, a pointer can be any data ...