What will be the output of following program code? #include<stdio.h> main() { int k; float j; j=9.0/2; k=9/2.0; printf(%dt%ft,k,j); j=9/2; k=9/2; printf(%dt%ft,k,j); k=9.0/2.0; j=2/9.0; printf(%dt%ft,k,j); }
Reveal answer
Fill a bubble to check yourself