typedet variables to give examp
Answers
Answered by
1
Answer:
The C programming language provides a keyword called typedef, which you can use to give a type a new name. Following is an example to define a term BYTE for one-byte numbers −
After this type definition, the identifier BYTE can be used as an abbreviation for the (type unsigned char, for example..)
Similar questions