#include<iostream.h>
#include<conio.h>
main()
{
int a=100,*p;
clrscr();
p=&a;
cout<<"\n Pointer Arithmetic Result is :"<<(++*p);
getch();
}
#include<conio.h>
main()
{
int a=100,*p;
clrscr();
p=&a;
cout<<"\n Pointer Arithmetic Result is :"<<(++*p);
getch();
}
No comments:
Post a Comment