Declaring New Data Types with typedef
typedef is a powerful tool that allows programmers to define and then use their own data types. For example:
typedef int Integer;
Integer nStudents, nCourses, studentID;
Note that in the typedef statement, the newly defined type name goes in the...
kaustubhk.hashnode.dev2 min read