What is typedf?

Submitted by: Muhammad
The typedef clause can be used in a similar manner.
typedef long int int32; /* 32 bit signed integer */
The typedef is preferred over the #define because is better integrated into the C language, and it can create more kinds of variable types than a mere define.
Submitted by: Muhammad

Read Online C Preprocessor Job Interview Questions And Answers