What will be the output of the following program : void main() { int a=5,b=6; Printf("%d %d %d",a,b,--a*++b); }
Compile-Time Error
5 6 30
4 7 28
None of the above