0
#include<stdio.h>Â #include<conio.h>Â void main(){Â int num,a=10;Â num=a--- -a--;Â printf("%d %d",num,a);Â }
explain the output please
3 Answers
+ 2
a--- - a--- means (a--)-(-(a--)) so what it does: 10-(-9)=19, a was decremented twice so a=8.
0
num=a--- ??
it should generate errorđ
0
the output is 20 8
I didn't get how is this?