U
Q. What is the output of this program?
#include <iostream> #include <iomanip> using namespace std; void showDate(int mm, int dd, int yy) { cout << setfill('0'); cout << setw(2) << mm << '/' << setw(2) << dd << '/' << setw(4) << yy << endl; } int main() { showDate(1, 1, 2019); return 0; }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. What happens if we execute the following code in C and C++?
Q. When an ADT is implemented as a C++ class, which of the following should normally be true?
Q. What happens if the exception is not caught in the program?
Q. C++ is originally developed by
Q. Which of the following is not a valid file operation in C++?
Q. A block comment can be written by
Q. Classes in CPP are________ .
Q. Additive, Multiplicative, shift, Bitwise logical and assignment operators is ____ operator.
Discusssion
Login to discuss.