#include
using namespace std;
int main ()
{
int *x;
int c=200;
x=&c;
cout << " x is the address of c: " << x << endl;
cout << " *x points at c: " << *x << endl;
x++;
cout << " x is the address of c: " << x << endl;
cout << " *x points at c: " << *x << endl;
return 0;
}
Edu-Tester is Powered by Blogger and Wearing Capung Template ; an XML Blogger Template Designed By Gre | Template-Godown
0 comments:
Post a Comment