The typedef is an advance feature in C language which allows us to create an alias or new name for an existing type or user defined type. The syntax of typedef is as follows: … typedef int myint; Now myint is an alias of int . From now on we can declare new int variables using myint instead of int keyword.