C Preprocessor Question:

What is #define?

C Preprocessor Interview Question
C Preprocessor Interview Question

Answer:

The #define directive can be used to define types, such as:
#define INT32 long int /* 32 bit signed integer type */


Previous QuestionNext Question
What is ## Preprocessor operator in C?What is the mean of function?