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

Choose the correct option

Showing Answers 1 - 8 of 8 Answers

Dhiraj

  • Nov 22nd, 2005
 

The answer is Option Ahere the statement FLOATPTR a,b;becomes float* a,b;here "a" is a float pointer, but "b" is just an float variable.so the correct type for "b" is "float", and not "float-pointer"

vamsi krishna

  • Nov 24th, 2005
 

Answer is:a)float

Mamata V Ritti

  • Aug 19th, 2006
 

The answer is option a ie float

  Was this answer useful?  Yes

datta.s.k

  • Oct 10th, 2006
 

int

  Was this answer useful?  Yes

Rohit Kumar Sharma

  • Oct 11th, 2006
 

fine that is correct.many commit mistake here carelessly.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions