You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#define is capable of defining aliases for values as well, for instance, you can define 1 as ONE, 3.14 as PI, etc. Typedef is limited to giving symbolic names to types only.
Preprocessors interpret #define statements, while the compiler interprets typedef statements.
There should be no semicolon at the end of #define, but a semicolon at the end of typedef.
In contrast with #define, typedef will actually define a new type by copying and pasting the definition values.*/