Poi ter | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
0

Poi ter

what is the difference between these two codes int p=88; int *a=&p; and -------------- int *a= new int; int *a=88; what is the difference between these to pointers. thanks

9th Dec 2016, 6:40 AM
AbuAli
AbuAli - avatar
2 Respuestas
+ 3
1.) p is an int on the stack. a is a pointer that points to p, or in other words it is a variable that stores the address of a. 2.) now a is a pointer that points to an int which is stored on the heap. then you just store 88 in the variable a points to. maybe you search for differences between heap and stack for more information on this or ask here in another question.
9th Dec 2016, 12:12 PM
Peter
+ 2
if in the second example you actually wanted to declare a new int pointer and directing initializing it with 88, so int *a = 88; means that this pointer stores the address 88. its the same as saying int *a; a = 88; so when you then acessing *a,.you are talimg sizeof(int), (which is usually 4)bytes at address 88 nd interpreting it as an int usuly it does not make semse to give explicit values for addresses
9th Dec 2016, 1:29 PM
Jakob Robert
Jakob Robert - avatar