How does the limits.h header file can be represented in C++?
Which C++ function is used to optimize the space in a vector of boolean values?
#include
Which function is used to check whether a character is tab or a control code?
How are sequences of objects accessed in C++?
How many times a constructor is called in the life-time of an object?
What will be the output of the following C code?
#include<stdio.h>
int main()
{
int i=2;
do
{
printf("Hi");
}while(i<2);
return 0;
}
If by mistake you specify more arguments than required, the excess arguments will be ______.
Which of the following is correct?
Is it possible to run a C program without using the main() function?