The keyword typedef is used to define new data type names in C/C . Here we should not not mistaken that we are creating any new data type, we should carefully note that we are just giving new names to the data types already available to us by C/C .
It really helps in writing codes which are more close to the machine because instead of writing long repeated lines. We can just use typedef and rest other will be done by the compiler.
It should be noted it is job of the compiler to do all the nece...
Published on August 29, 2020 08:02