Back To C++ Pointers
//program to demonstrate pointer arithmetic (pointer arithmetic means applying operators on pointers) #include
#include
void main() { int a=10; int *ptr=&a; clrscr(); cout<<"\naddress of a in pointer ptr is "<