For Codeblock, please first download MinGW, then download and install Code::Block Ide.
You can learn more on install in here.
Or you can directly download the compact package - 76MB.
Saturday, November 27, 2010
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
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
How To Make Program In C
Subscribe to:
Posts (Atom)