B
Q. What will be the output of the following C++ program?
#include <iomanip> #include <iostream> using namespace std; int main() { cout << setprecision(17); double d = 0.1; cout << d << endl; return 0; }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Q. Generic catch handler is represented by ______________ .
Q. What is the output of the following code snippet? int arr[3] = {1, 2, 3}; cout << arr[3];
Q. What is the output of the following code?
Q. Can two functions declare (non-static) variables with the same name.
Q. What is the length of double data type?
Q. What does the sequence adaptor provide?
Q. Which of the following is correct about friend functions?
Q. Find the output of below program.
Q. Value of ix+j, if i, j are integer type and ix long type would be
Discusssion
Login to discuss.