+ 1
when i run this program it gives me different adress value ?
#include <stdio.h> int main() { int x=5; printf("%d\n",x); printf("%d\n",&x); printf("%d\n",*&x); }
1 Réponse
+ 1
thank you
#include <stdio.h> int main() { int x=5; printf("%d\n",x); printf("%d\n",&x); printf("%d\n",*&x); }