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... Read more 2 comments:
Escape Sequence in C/C++ Gulzar Sheikh 11:31Escape Sequence: .It indicates that printf is supposed to do something out of the ordinary. When encountering a backslash in a string, Esca... Read more 2 comments:
PRINTF and SCANF function Gulzar Sheikh 03:50PRINTF function: Printf function is defined in the header #include<stdio.h> . Printf is used for output in the C/C++ program. Syntax... Read more 3 comments:
Variables in C/C++ Gulzar Sheikh 03:44 Variable: Variable is nothing itself. It is actually name of memory location that our program can manipulate. In C language every variabl... Read more 2 comments:
Header File Gulzar Sheikh 21:36 Stdio.h: Stdio stands for Standard Input Output. In C or C++ language we can perform Input and Output operations using Stdio.h. we wr... Read more 1 comment:
Standard Liabrary Files in C Gulzar Sheikh 05:59 Functions: C program consist on some small modules that modules called Function. There are two types of Function Built In Functions ... Read more No comments:
History Of C Language Gulzar Sheikh 05:32 History of BCPL: C language is derived from two languages i.e. BCPL and B . BCPL was developed by Martin Richard in 1967 it is designed f... Read more 2 comments: