What is typedef int?

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.

Sizin İçin Seçtik  What is a struct used for?

Leave a Reply

Your email address will not be published. Required fields are marked *