Typedef in C

typedef: is a reserved keyword in C and C++ language used to give any datatype an alias name. Why we use typedef? Normally, we use the standard name of data type like int, unsigned int, char, struct etc. to represent the feature of variable and function in the program. typedef replaced standard data types with […]

Typedef in C Read More »