What will be the output of the following program : void main() { int val=2; val = - --val- val--- --val; printf("%d",val); }
Compile-Time Error
3
-1
0