What is the size of a character literal in C and C++?
Which of the following are C preprocessor directives?
What is the use of make_heap in the heap operation?
The goto statement cannot be used to jump from the main() function to within a function.
The process of accessing data stored in a serial access memory is similar to manipulating data on a _____
For a given integer, which of the following bitwise operators can be used to 'set' and 'reset' a particular bit respectively?
What is the output of the program given below
#include<stdio.h>
int main()
{
static int i=5;
if(--i){
main();
printf("%d ",i);
}
}
What is the purpose of the <exception> header file in C++?
What will be the output of the following C code?
int main()
{
float f1 = 0.1;
if (f1 == 0.1)
printf("equal\n");
else
printf("not equal\n");
return 0;
}
What is the difference between delete and delete[] in C++?