Solved

Suppose CType Is a Class Template, Which Can Take Int

Question 39

Multiple Choice

Suppose cType is a class template, which can take int as a parameter.The statement: ____ declares x to be an object of type cType, and the type passed to the class cType is int.


A) cType<int> x;
B) cType int x;
C) cType int = x;
D) cType int :: x;

Correct Answer:

verifed

Verified

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

Related Questions