Is there a way to check the type of variable by preprocessor ?
Actually I want to do something like this :

//test.c
int main()
{
  TYPE a=6;
  #if TYPE==int
  printf("%d\n",a);
  #elif TYPE==float
  printf("%f\n",a);
  #endif
}

Now I use it as :

gcc -o test -D TYPE=float test.c

But it is not working. TYPE is always matching with int and giving result according to %d.
Please help me to solve this problem.

link|improve this question

feedback

2 Answers

The preprocessor can't compare strings like that. See this FAQ. The way to do it is by #defining the options, and there is an example there to help you.

link|improve this answer
feedback

I agree with Kevin. The code you are working with is sometimes used when doing floating point versus integer builds. Some processors handle integer arithmetic very efficiently, but are very slow when processing floating point values. You might consider writing the program like so:

//test2.c - Lets you do an integer-only or floating point build
#define INT_MODE    (1)
#define FLOAT_MODE  (2)

#define NUMBER_MODE INT_MODE  // Use integer mode in this case

int main()
{
#if NUMBER_MODE == INT_MODE
  int a = 6;
#else
  float a = 6.0;
#endif

#if NUMBER_MODE == INT_MODE
  printf("%d\n",a);
#else
  printf("%f\n",a);
#endif

  return 0;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.