Java
Casual Mode - Take your time!
1 / 5
Correct
0
Incorrect
0
Score
0%
Multiple Choice
What would be the output of the following C program?
int n=2, m=3, k;
k = (float)m/(float)n;
printf(k=%0.5d,k);
- k=1.00000
- k=0.00000
- k=00000.1
- k=00001
Casual Mode - Take your time!
What would be the output of the following C program?
int n=2, m=3, k;
k = (float)m/(float)n;
printf(k=%0.5d,k);