MCQs > IT & Programming > C++ > Output of the following? #include using namespace std; int main () { int x, y; x = 1; y = ++x * ++x; cout << x << y; x = 1; y = x++ * ++x; cout << x << y; return 0; }

C++ MCQs

What is the output of the following? #include <iostream> using namespace std; int main () { int x, y; x = 1; y = ++x * ++x; cout << x << y; x = 1; y = x++ * ++x; cout << x << y; return 0; }

Answer

Correct Answer: 3933

Explanation:

Note: This Question is unanswered, help us to find answer for this one

C++ Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it

search

C++ Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it