Constants C++ Questions And Answers
Here you can find Constants C++ Questions and Answers.
Why Constants C++ Questions and Answers Required?
In this Constants C++ Questions and Answers section you can learn and practice Constants C++ Questions and Answers to improve your skills in order to face technical inerview conducted by Banks. By Practicing
these interview questions, you can easily crack any Bank Exams interview.
Where can I get Constants C++ Questions and Answers?
AllIndiaExams provides you lots Constants C++ Questions and Answers with proper explanation. Fully solved examples with detailed answer description. All students, freshers can download Constants C++
Questions and Answers as PDF files and eBooks.
How to solve these Constants C++ Questions and Answers?
You no need to worry, we have given lots of Constants C++ Questions and Answers and also we have provided lots of FAQ's to quickly answer the questions in the Bank Exams interview.
Constants C++ Questions and Answers
1. The Constants C++ are also called as
Constants C++ Questions and Answers
2. What are the parts of the literal Constants C++?
Constants C++ Questions and Answers
3. How the Constants C++ are declared?
Constants C++ Questions and Answers
4. What is the output of this program?
#include
using namespace std;
int main()
{
int const p = 5;
cout << ++p;
return 0;
}
Constants C++ Questions and Answers
5. What is the output of this program?
#include < iostream >
using namespace std;
#define PI 3.14159
int main ()
{
float r = 2;
float circle;
circle = 2 * PI * r;
cout << circle;
return 0;
}
Constants C++ Questions and Answers
6. Which of the following statement is true about preprocessor directives?
Constants C++ Questions and Answers
7. Regarding following statement which of the statements is true?
const int a = 100;
Constants C++ Questions and Answers
8. The difference between x and ‘x’ is
Constants C++ Questions and Answers
9. How to declare a wide character in string literal?