Write C program for calculating the total score follow by this step:
– getting student id, student name, paper test score and oral test score via keyboard
– calculating the total score: paper test score + oral test score
– showing the total score and message which compare with this condition:
o TotalScore >= 80 show message “PASS - VERY GOOD”
o TotalScore >= 50 show message “PASS”
o TotalScore < 50 show message “FAIL”
The output should same the result as showing in the example.