GMgKe586q6suSQnyqZLlGCooeWM
Learn To Program
Increase Your Knowlegde and Build Your Skill!
Pages
Home
Me
Search
Friday, November 26, 2010
About Pointer
#include
int a;
int *ptr;
int main()
{
a = 20;
ptr = &a;
}
The best link :
here
The program will display:
value of *ptr: 20 %d
value of &ptr: 0x00408060 %p
value of ptr: 0x0040805c %p
About Pointer
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment