30 articles C Tutorials Page 3 / 3

Logical Operators

Logical operators are used for logical operations. These Operations are used for compound relational expressions. When more than one relational expression occur in a C programming Language using logical operators, then such type of expressions are called Compound Relational expressions. These are used in decision making statement and some looping statements like if, switch, do…

Arithemetic Operators

Arithmetic operators are those operators which can perform arithmetic operations like addition, subtraction, multiplication etc. Mostly arithmetic operators are used in all the computes languages. These operators were designed at the time of the Abacus computing machine. There are mainly five arithmetic operators in the C programming language. These are as follows-

Operators In C Programming Language

In C programming language operators are the symbols which are used to perform specific operations. From every operator, C-expression can be defined. By using some operators we can solve or compute a formula, we can compare two expressions or variable values, or can create logical relationship between compound statements, can solve a conditional expression, can…

Output Functions in C Programming Language

In C programming language output functions are the functions through which the result is displayed on the standard output device like monitor. Following are the output functions of C language – putchar( ) – This function displays the character on the screen which is already inputted by using the getchar( ) function. For ex – putchar(ch);…