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. How can you access the arguments that are manipulated in the function?
Q. How many loops are there in C++ 98?
Q. RunTime Polymorphism in c++ is achieved by _______
Q. Which of the following operators is called “Output Flow Operator”?
Q. What is the output of the following code snippet? int x = 10; int y = 20; cout << (x - y);
Q. Which one of the following is not a valid reserved keyword in C++
Q. What is the output of this program?
Q. Which one of the following is not a fundamental data type in C++
Q. Which of the following is not an example of high level language?
Discusssion
Login to discuss.