Arithmetic Operator Example Program In C
Arithmetic Operator
They are five arithmetic operators in C.
- + Addition or unary plus
- - Subtraction or unary minus
- * Multiplication
- / Division
- % Modulo operator
These operators can operate on any arithmetic operations in C.
Example Program Of Arithmetic Operators
/* Example Program For Arithmetic Operators In C Programming Language
little drops @ thiyagaraaj.com
Coded By:THIYAGARAAJ MP */
// Header Files
#include<stdio.h>
#include<conio.h>
//Main Function
int main ()
{
// Variable Declaration
int a = 100;
int b = 2;
int c = 25;
int d = 4;
int result;
result = a - b; // subtraction ( Subtraction or unary minus Arithmetic Operator)
printf ("a - b = %i\n", result);
result = b * c; // multiplication ( Multiplication Arithmetic Operator)
printf ("b * c = %i\n", result);
result = a / c; // division ( Division Arithmetic Operator)
printf ("a / c = %i\n", result);
result = a + b * c; // precedence ( Addition or unary plus Arithmetic Operator)
printf ("a + b * c = %i\n", result);
printf ("a * b + c * d = %i\n", a * b + c * d); // Mixed
return 0;
}
Sample Output
a - b = 98
b * c = 50
a / c = 4
a + b * c = 150
a * b + c * d = 300
Read More Articles
- Use of getch(),getche() and getchar() in C
- Switch Case Statement Example Program In C Programming Language
- C Character Set
- Convert a Floating-point value to an Integer in C
- Data Input and Output gets and puts Example Program In C
- Special Operators In C
- Pointer Representation and Pointer Example Programs
- C Data Input and Data Output
- Simple While Loop Example Program In C Programming Language
- Data Output printf and putchar Example Program In C
- C Introduction
- C Operators
- Storage Classes In C
- C Pointers
- File Management
- C Identifiers
- Loop Control Statements
- Hello World - Simple C Program
- C Array
- Single Character Output Function : putchar()
- C Reserve Words
- C Specific Properties and Implementation
- If else Statement Example Program In C Programming Language
- If Statement Example Program In C Programming Language
- Confusing Array in C ( Array Representation and Initialization )