TYPEDEF IN C


  • The typedef is a keyword used in C programming to provide some meaningful names to the already existing variable in the C program.
  •  It behaves similarly as we define the alias for the commands. 
  • In short, we can say that this keyword is used to redefine the name of an already existing variable
  • Syntax of typedef
typedef <existing_name> <alias_name>  


Posted on by