What is the output of this program?cint a=10, b=20;int f1(a) { return(a*b); }main() {printf('%d', f1(5));}

🎲 Try a Random Question  |  Total Questions in Quiz: 49  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
C (Programming Language) Quiz — practice the complete quiz, review flashcards, or try a random question.

C (Programming Language) MCQs For LinkedIn Skill Assessments.


What is the output of this program?<br>c<br>int a=10, b=20;<br>int f1(a) { return(a*b); }<br>main() {<br>printf('%d', f1(5));<br>}<br>