Which access specifier is used for constructors in C++?
Aprivate
Bpublic
Cprotected
Dall the above
Aprivate
Bpublic
Cprotected
Dall the above
Related Questions:
What is the value of sum after the execution of the following code?
int sum = 0;
for (int i = -5; i<=;i++)
{
if (!i) break;
sum += i;
}