Multiple Choice
Explicit values can be assigned to each enumerated constant, with unspecified values automatically continuing the integer sequence from the last specified value. For example, ____.
A) enum {Mon: 1, Tue, Wed, Thr, Fri, Sat, Sun};
B) enum {Mon, Tue, Wed, Thr, Fri, Sat, Sun};
Mon = 1;
C) enum {Mon = 1, Tue, Wed, Thr, Fri, Sat, Sun};
D) enum {Mon 1, Tue, Wed, Thr, Fri, Sat, Sun};
Correct Answer:

Verified
Correct Answer:
Verified
Q34: Any argument typed on a command line
Q35: The complement operator, _, is a unary
Q36: If necessary, a macro definition can be
Q37: ARRAY first, second; is equivalent to the
Q38: Enumerated constants can be any valid user-created
Q40: The definition REAL val; is _.<br>A)not valid
Q41: The _ statement provides an unconditional transfer
Q42: #define SQUARE(x) x * x<br>Val = SQUARE(num1
Q43: The conditional preprocessor directive _ means "if
Q44: Enumerated lists are identified by the reserved