Typedef

Get introduced to typedef with an interactive example.

What is typedef?


The typedef keyword lets us give a new name to an existing data type.


Typedef built-in data types

See the code given below!

Press + to interact
#include<stdio.h>
int main() {
// Declare variables
unsigned long int i, j;
// Give new name to unsigned long int
typedef unsigned long int ULI;
// Declare variables of type ULI
ULI k, l;
}

Lines 5-9: ...