Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Is typedef and #define the same in c?
Confused by #define and typedef

Is there any difference between the following:

#define NUM int

...

NUM x;
x = 5;
printf("X: %d\n", x);

And this:

typedef int NUM;

...

NUM x;
x = 5;
printf("X : %d\n", x);

Both tests compile and run without problems. So, are they equivalent?

Thanks.

share|improve this question

marked as duplicate by Tim Cooper, interjay, Mat, Gilles, chris Aug 30 '12 at 17:28

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

There is a difference when you want to create an alias of a pointer type.

typedef int *t1;
#define t2 int *

t1 a, b; /* a is 'int*' and b is 'int*' */
t2 c, d; /* c is 'int*' and d is 'int'  */

Moreover, typedef obey to scope rules, ie you can declared a type local to a block.

On the other hand, you can use #define when you want to manage your type in a preprocessor directive.

share|improve this answer

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