A typedef is a keyword in both C and C++ used to introduce new names for existing types. A simple typedef declaration lets you define your own names that can be used in place of type specifiers such as int, float, and double. Surprisingly, some people
Read More...