Question: 3.16 What will the following program display? #include using namespace std; int main() { } int unus, duo, tres; unus = duo = tres
3.16 What will the following program display? #include using namespace std; int main() { } int unus, duo, tres; unus = duo = tres = 5; unus += 4; duo *= 2; tres -= 4; unus /= 3; duo += tres; cout < < unus < < endl; cout < < duo < < endl; cout < < tres < < endl; return 0;
Step by Step Solution
There are 3 Steps involved in it
There is a syntax error in the code provided The line unus duo tres 5 is ... View full answer
Get step-by-step solutions from verified subject matter experts
