Solved

Select All That Apply. Using C++11

Question 41

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:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions