C Programming Fundamentals
Casual Mode - Take your time!
1 / 15
Correct
0
Incorrect
0
Score
0%
Multiple Choice
Which is the actual syntax to find the ratio of boys and girls in C language? (given that float ratio; int boys, girls;)
- ratio = boys/girls;
- ratio = girls/boys;
- ratio = (float) girls/boys;
- ratio = (float) boys/girls;
- ratio = float boys/girls;