What is the value of variable c at the end of this program?1 main() {2 int a, b, c;3 a=10; b=50;4 c=a * b % a;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 value of variable c at the end of this program?<br><br>1 main() {<br>2 int a, b, c;<br>3 a=10; b=50;<br>4 c=a * b % a;<br>5 }<br>