Which keyword can be used in a C++ template?
The keyword used to transfer the control from a function back to the calling function is:
Which category of data type does a class belong to?
main( )
{
int i;
for(i=1; i<=5; i++)
{
If(i*i>= 121)
goto there;
else
printf(“%d” i);
}
there: printf(“Hello”);
}
The _____ macro must be called before using the _____ and _____ macros.
Which of the following is the correct syntax to declare a static variable register?
What will happen in the following C++ code snippet?
#include <iostream>
using namespace std;
int main()
{
int a = 5, b = 10, c = 15;
int *arr[ ] = {&a, &b, &c};
cout << arr[1];
return 0;
}
Identify the mistake in the given code and give output as 190 100 100 78 23 10 1.
What happens if the break keyword is not included after the case body?