C Programming

Conditional statements and looping in c

Conditional statements and looping in c are used to change the flow of control of the program. Flow of control means that the way in which the program executes. Conditional statements in c: If statement :  if statement is the simple conditional statement in c.if statement contains condition along with this.if followed with the condition , if …

Conditional statements and looping in c Read More »

Operators in C

Operators are the symbols which performs various operations on operands such as addition,subtraction,multiplications,divisions or modulus etc. Operators performs various mathematical operations. operands are which on which operators performs these operations. Operators performs operations and results stored into the variables (operands) as result value of expression. C provides various operators which are as follows: Arithmetic operators …

Operators in C Read More »