The value 132.54 can be represented using which data type?
Which of the following is an entry-controlled loop?
Which of the following cannot be declared as virtual?
Which data type is most suitable for storing the number 65000 in a 32-bit system?
Which of the following functions is used for allocating space for array in memory
What is the output of the following C++ program?
main()
{
float a = 5.3, b = 6;
int c = a * b;
cout << c;
}
What does the expression A.B represent in C++?
What is the correct syntax for defining a namespace?
What is the purpose of the #include directive in programming?
Which of the following statements about the scope of a C preprocessor macro definition is correct?