What will be the output of the following pseudocode ? int a, b, c; b = 5, a = 2, c = 2; if(b>a && a>c && c>b) { b = a + 1; } else a = b + 1; printf("%d",a + b + c);
Answers
Answered by
3
Answer:
13
Explanation:
else condition execute
a=b+1=5+1=6;
a+b+c=6+5+2=13
Answered by
0
Answer:
13
Explanation:
else condition
a+b+c+3+4+5
Similar questions