Arithmetic Operators in C Language
Arithmetic Operators in C Language: (1) Arithmetic Operators are used for calculation purpose. (2) Sample C language code and its output, as shown: #include <stdio.h>#include <conio.h>// Arithmetics Operators in C Languageint main(){ int x; int y; x = 10; y = 2; printf(“Value of Addition is: %d\n”, x+y); printf(“Value of Subtraction is: %d\n”, x-y); printf(“Value of …