int i = 4; int x = 6; double z; z = x / i; printf(z=%.2fn, z);
What will print when the sample code above is executed?
Reveal answer
Fill a bubble to check yourself
int i = 4; int x = 6; double z; z = x / i; printf(z=%.2fn, z);
What will print when the sample code above is executed?