🎴 Flashcard Mode

C Expressions and Switch Statements

Card1 / 19
Mastered0
Review0
QuestionClick to flip

What is the output of the given C code?

int main()
{
printf( "%lf",round(hypot(4+1,9-1)));
return 0;
}

AnswerClick to flip back
A
9
💡 Explanation:

This is the correct answer. 

Change Mode