How many main types of sequence operations are provided by the C++ algorithm STL?
In c++ the reusability of code can be achieved through
What will be the output of the following C code?
A double has ___ bits, divided into 3 fields, the lowest ___ bit encode the mantissa, the next ___ bits encode the exponent and the MSB encodes the signed bit.
What is the output of the following code?
int &fun()
{
static int x=10;
return x;
}
int main()
{
fun()=30;
cout<<fun();
return 0;
}
Which of the following statements about stdout and stderr are true?
Which of the following applications may use a stack?
What will be the output of the following C++ code?
#include <iostream>
#include <string>
using namespace std;
int main()
{
cout<<extent<string[10][20][30], 0>::value;
cout<<extent<string[10][20][30], 1>::value;
cout<<extent<string[10][20][30], 2>::value;
return 0;
}