2.
What will be the output of the following C++ code?
#include <iostream>
using namespace std;
int main()
{
    char* ptr;
    unsigned long int a = (size_t(0) / 3);
    cout << a << endl;
    try
    {
        ptr = new char[size_t(0) / 3];
        delete[ ] ptr;
    }
    catch(bad_alloc &thebadallocation)
    {
        cout << thebadallocation.what() << endl;
    };
    return 0;
}

3.
What will be the output of the following C++ code?
#include <stdio.h>
#include <math.h>
int main ()
{
    int param, result;
    int n;
    param = 8.0;
    result = frexp (param , &n);
    printf ("%d \n", param);
    return 0;
}

4.
Pick the correct statement.

Read More Section(Standard Template Library (STL) in C plus plus)

Each Section contains maximum 100 MCQs question on Standard Template Library (STL) in C plus plus. To get more questions visit other sections.