Enumerations provide a way to assign ________ to a set of named constants.
- data
- functions
- objects
- values
Enumerations allow you to assign integer values to a set of named constants, making your code more readable and maintainable by giving meaningful names to values.
Loading...
Related Quiz
- A structure containing an instance of another structure within it is known as a ________ structure.
- What is the return type of the strlen function in C?
- The ________ keyword in C suggests to the compiler to use a CPU register for the variable to optimize access time.
- What is the standard notation for passing command line arguments in a C program?
- You're developing a program to calculate the area of a circle. What data type would be most suitable to store the radius, considering it can be a fractional value?