43.
What does the 'volatile' keyword indicate in C++?

46.
What will be the output of the following C++ function?
int main()
{
    register int i = 1;
    int *ptr = &i;
    cout << *ptr;
    return 0;
}

Read More Section(Variables and Data Types in C plus plus)

Each Section contains maximum 100 MCQs question on Variables and Data Types in C plus plus. To get more questions visit other sections.