top of page

Frequently Asked C Language Interview Question & Answers

Explain Enumerated types in C language?

Enumerated types are used to define variables that can only assign certain discrete integer values throughout the program.

Enumeration variables are variables that can assume values symbolically

Declaration and usage of an Enumerated variable.

enum boolean

{

false;

true;

}; enum boolean

Close
bottom of page