What will be the output of the following program : void main() { int a=5,b=6,c=7; printf("%d %d %d"); }
Compile-Time Error
5 6 7
7 6 5
Unpredictable