📚 Practice Mode
C Expressions and Switch Statements
Learn at your own pace with hints and detailed explanations
1 / 19
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