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:
The IF selection Statement Gulzar Sheikh 02:41Selection 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 22:48Executable 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 11:42Performing Arithmetic Operations: In this program we will perform Addition,Subtraction, Multiplication and Division #include<stdio.h&g... Read more 2 comments: