C program to find the address of variables
kw.c
Output
kodingwindow@kw:~$ gcc kw.c
kodingwindow@kw:~$ ./a.out ——————————————————————————————————————————— Program to find address of variables ——————————————————————————————————————————— Address of a | 0x7fff701439cc Address of string | 0x7fff701439d0 Address of s | 0x7fff701439cb Address of d | 0x7fff701439d8 Address of l | 0x7fff701439e0 main address | 0x56238cd336fa main address | 0x56238cd336fa ——————————————————————————————————————————— kodingwindow@kw:~$
Advertisement