whats the Difference between Typedef and Define in C?
we can Use both for the case below...
#define INT32 int
typedef int INT32;
for both the case actually what will happen when compiling and running?
And is there any specific use for typedef .. If yes give me Examples ?
Thanks & Regards
-Balaji
we can Use both for the case below...
#define INT32 int
typedef int INT32;
for both the case actually what will happen when compiling and running?
And is there any specific use for typedef .. If yes give me Examples ?
Thanks & Regards
-Balaji
Comment