How many constructors can be present in a class?
Which of the following is an example of static memory allocation?
#include
The data members and functions of a class in C++ are by default ________.
Which of the following gives the memory address of the first element in array?
Which header file is required to use the pair container in your C++ program?
#include<stdio.h>
int main()
{
do
printf("While");
while (0);
printf("After");
}
If n has the value 3, then the statement a[++n] = n++; will result in:
What types of variables can the pointer 'ptr' store given the following declaration?
int **ptr;
What is the output of the following C code?
#include <stdio.h>
#define abekus(a,b) (a*b)
int main()
{
int x=3, y=4;
printf("%d", abekus(x+2, y-1));
return 0;
}