typedef keyword of C language

It is a special keyword of 'C' language, which is used to provide an identifier name to a data type definition.
यह सी लैंग्वेज का एक विशेष कीवर्ड है, जिसकी सहायता से डाटा टाइप को आइडेंटिफायर नाम प्रदान किया जा सकता है।

Syntax :-
typedef <type definition> <identifier>;

Example :-
1.) typedef unsigned char byte;
byte a;

2.) struct student{
int roll no;
char name [20];
float fees;
};
typedef struct student stu;
stu s1, s2, s [100];

No comments:

Post a Comment