hello,
i donot know how to manipulate this huge address like 0x59990005
,0x59980015 please explain in a clear way how to manipulate these huge addresses
I write a c program in which these addresses is used just tell how it's working
i m not able to understand how i slove this program.
thank you
i donot know how to manipulate this huge address like 0x59990005
,0x59980015 please explain in a clear way how to manipulate these huge addresses
I write a c program in which these addresses is used just tell how it's working
i m not able to understand how i slove this program.
Code:
#include<stdio.h>
void main(){
int huge *a =(int huge *)0x59990005;
int huge *b =(int huge *)0x59980015;
if(a == b)
printf("power of pointer");
else
printf("power of c");
getch();
}
thank you
Comment