0

What is the out put of c code?

#include<stdio.h> int main() { int a=3; int b=++a+a+++--a; printf("value of b is %d",b); return (b); } Answer is 13 ,how tell me plz

1st May 2020, 7:26 PM
Preethi A S
Preethi A S - avatar
2 Answers
+ 2
13
1st May 2020, 7:29 PM
Youssef Radid
Youssef Radid - avatar
+ 1
++a(4)+a++(9)+--a(13)
1st May 2020, 7:35 PM
Youssef Radid
Youssef Radid - avatar