📚 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;
}

  1. 13
  2. 9
  3. 12
  4. 16
  5. 22