Multiple Choice
Select all that apply. Using C++11:
Which of the following can be used to initialize an integer variable named dozen with the value of 12?
A) int dozen = 12;
B) int dozen(12) ;
C) int dozen = {12};
D) int dozen = (12) ;
E) int dozen {12};
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q36: In C++11, if you want an integer
Q37: The preprocessor reads a program before it
Q38: For every opening brace ({) in a
Q39: Which part of the following line is
Q40: The _ is(are) used to display information
Q42: A variable definition tells the computer<br>A) the
Q43: The float data type is considered _
Q44: Given the following program, which line(s)
Q45: What is output of the following statement?<br>cout
Q46: A character literal is _, whereas a