C Expressions and Switch Statements
Casual Mode - Take your time!
1 / 19
Correct
0
Incorrect
0
Score
0%
Multiple Choice
What is the output of the given C code?
int main()
{
printf( "%lf",round(hypot(4+1,9-1)));
return 0;
}
- 13
- 9
- 12
- 16
- 22
Casual Mode - Take your time!
What is the output of the given C code?
int main()
{
printf( "%lf",round(hypot(4+1,9-1)));
return 0;
}