Typedef
Get introduced to typedef with an interactive example.
We'll cover the following...
What is typedef
?
Typedef built-in data types
See the code given below!
Press + to interact
#include<stdio.h>int main() {// Declare variablesunsigned long int i, j;// Give new name to unsigned long inttypedef unsigned long int ULI;// Declare variables of type ULIULI k, l;}
Lines 5-9: ...