11 April
Using typedef statement we can create new data type in c programming language. Syntax:- typedef type name; Example:- typedef int number; Now we can use number as datatype, lets see:- number n = 10; WAP in C to Convert Hours in Minute and Secound #include<stdio.h> #define H 60 void main()…