Program to find GPA using If-else statement Gulzar Sheikh 8 years agoProgram 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 8 years ago 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:
The IF selection Statement Gulzar Sheikh 8 years agoSelection statements are used to choose among alternative courses of action. For example, suppose the passing grade on an exam is 60. The ... Read more 3 comments:
Decision Making Statements: Equality and Relational Operators Gulzar Sheikh 8 years agoExecutable Statements: Executable statements either perform actions (such as calculations or input or output of data) or make decisions (we... Read more 3 comments:
Program to perform arithmetic operations Gulzar Sheikh 8 years agoPerforming Arithmetic Operations: In this program we will perform Addition,Subtraction, Multiplication and Division #include<stdio.h... Read more 2 comments: