Question { 19669 }
what is the output of the following program? #include void main() { int x=4,y=3,z; z=x-- -y; printf("\n%d %d %d",x,y,z); }
Answer
Question { Satyam, 11674 }
main() { float a=3.2e40; printf("%d",a); }