How many real types are there in the complex number system?
Which is not a compound operator ?
Which of the following gets called when an object goes out of scope?
Which header file is required to use the pair container in your program?
Which of these expressions will isolate the rightmost set bit?
What is the output of the following C program?
int main()
{
int a[7]={1,2,3,4};
printf("%d %d %d %d %d",a[0],a[0],a[0],a[0],a[0]);
}
Which of the following correctly describes the protected access specifier?
What is name mangling in C++?
What does this C++ template function indicate?
template<class T>
T func(T a)
{
std::cout << a;
}
Which of the following statements is the best use of the ternary operator (? :) in C?