0x29fee8 what really is this plis help | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

0x29fee8 what really is this plis help

please help i dont get this

20th Nov 2016, 2:32 AM
stephen haokip
stephen haokip - avatar
2 Answers
+ 4
This is memory address of a variable you can get it. Memory address is in hexadecimal. int a=5; cout << &a; or int a=5; int *p=&a; cout << p;
20th Nov 2016, 3:04 AM
Aditya kumar pandey
Aditya kumar pandey - avatar
0
It looks like an address in memory. Are you trying to print the value pointed to by a pointer or something?
20th Nov 2016, 2:37 AM
scott johnson
scott johnson - avatar