Computer Science, asked by ramadugunandakishore, 8 months ago

For the following program to be executed over the single accumulator

organization, Can you elaborate the instructions that will be given for the

same?

#include <iostream>

using namespace std;

int main() {

int x = 5;

int y = 6;

int z = 34;

int total = (x+(x + y)*z+y);

cout << total;

return 0;

}​

Answers

Answered by vinodrajput8757
2

Answer:

385

Explanation:

this result comes after the excution of  prog.

Similar questions