Hi everyone
I m workin on AT89c52 using C but i am facin a problem with pointers.I am declearing a pointer
unsigned char *ptr; unsigned int Address; ....... ......... void main( void ) { ...... ....... ptr = 0x2233; // Its works Address = 0x2233; ptr = Address; // error 214 illigel pointer //operation ........ }
why is this error