This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Pointer Problems

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

0