GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  Programming  >  C

 Print  |  
Question:  Pointer to Unsingned int

Answer: Why it is not possible to create pointer to unsingned int?


February 02, 2009 16:27:27 #1
 impakt   Member Since: February 2009    Total Comments: 2 

RE: Pointer to Unsingned int
 
The variable the holds the address (the pointer) is not interested if the value at the address it stores is signed or unsigned. One thing is sure: it must store an int, careless if it is signed or unsigned.
     

 

Back To Question