RE: What is the type of the variable b in the followin...
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
RE: What is the type of the variable b in the followin...
Answer is a) float.The above problem demonstrate the drawback of using #define constant. To avoid this situation use typedef's inplace of #define . Then code works as expected.Sivaram Prasad Nakkala