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
2 Answers
+ 2
13
+ 1
++a(4)+a++(9)+--a(13)
#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