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:  What is the type of the variable b in the following declaration?
#define FLOATPTR float*
FLOATPTR a,b;

a) float
b) float pointer
c) int
d) int pointer


Answer: Choose the correct option


November 11, 2005 21:56:14 #1
 pranavtank   Member Since: Visitor    Total Comments: N/A 

RE: What is the type of the variable b in the followin...
 
pointer to float
     

 

Back To Question