Defining Your Own Type Names
Make your own data type using the typedef keyword.
We'll cover the following...
The typedef keyword
In C, we can assign an alternate name to a data type, any name we want. A typedef statement allows us to do this.
For example, we can use the typedef keyword to ...
Ask