What will be the output of the following program : void main() { int x=4,y=3,z=2; &z=&x*&y; printf("%d",z); }
Compile-Time error
Run-Time Error
24
Unpredictable