Program to find GPA using If-else statement Gulzar Sheikh 09:56Program to find GPA using IF-ELSE statement: #include<stdio.h> int main() { int mark1,mark2,mark3,mark4,mark5,totalmarks,sum; ... Read more 2 comments:
The IF else selection Statement Gulzar Sheikh 22:53 The if selection statement performs an indicated action only when the condition is true; otherwise the action is skipped. The if…else se... Read more 2 comments: