What would be the output of the following program? #include<stdio.h> #include<conio.h> int main() {
int i = 2, j = 3, k, l ; float a, b ; k = i / j * j ; l = j / i * i ; a = i / j * j ; b = j / i * i ; printf( %d %d %f %f, k, l, a, b ) ; getch(); }
Reveal answer
Fill a bubble to check yourself