I was wondering what is the difference between these two lines of code?
int hi;
int *hi;
In the C programming language?
Thanks! Amit
|
reserves the space for an
reserves the space for a
|
|||||||||||
|
|
|
|||
|
|
|
The first declares an integer variable, while the second declares a pointer to an integer. Pointers are beyond the scope of a StackOverflow post, but this Wikipedia article is a starting point, and there should be at least a chapter on pointers in whatever book you're using to learn C. |
|||
|
|
|
a. int i; In line a an integer variable named 'i' is declared. When this is done the compiler reserves a memory space of size sizeof(int) (it's 4 byte on my computer). If you want to refer to this memory space then you have to use pointers. Line b declares a variable named 'address' which has a special property. This variable doesn't holds an 'int' but it stores the address of a variable that is of type 'int'. Therefore, whatever value address has, it should be interpreted as the address of a variable which is of type 'int'. Currently, the variable 'address' doesn't hold any memory address in it as we haven't yet defined which variable's memory address it has to hold. Line c can be read as "address is equal to the memory address of variable i". Now, the variable address stores the memory address of the 'int' variable 'i'. int main(){ When this code is run using a debugger I see Pointers are very powerful and you will start to use it more often once you understand it. Apart from the materials that others suggested for you to read I suggest use a debugger(gdb) and run a few programs with pointers in it and check every variable that you declared in the code. I understand things better when I have a visual picture of any problem and I think it might as well speed up your understanding of pointers. |
|||
|
|