Output of this program
What is the output of the following program?
#include <iostream>
int main() {
int x = 10;
int y = x++;
std::cout << x << " " << y;
}
Sign in to answer questions and track your progress
Sign InWhat is the output of the following program?
#include <iostream>
int main() {
int x = 10;
int y = x++;
std::cout << x << " " << y;
}
Sign in to answer questions and track your progress
Sign In