0
Can i see memory location of a variable or a data through a program?
C language
4 ответов
+ 2
#include <stdio.h>
int main() {
int myAge = 43;
printf("%p", &myAge);
return 0;
}
+ 2
Yes.
0
Justice how can i do it? Please tell me about memory adress
0
Chris Coder thanks