C Program to illustrate Airthmatic operators. This program takes an integer variable i and performs the basic arithmetic functions like Addition, Subtraction, Multiplication, Division, Unary Addition and Unary Subtraction. Read more about C Programming Language .
/*********************************************************** * You can use all the programs on www.c-program-example.com * for personal and learning purposes. For permissions to use the * programs for commercial purposes, * contact [email protected] * To find more C programs, do visit www.c-program-example.com * and browse! * * Happy Coding ***********************************************************/ # include <stdio.h> int main() { int i; i = 5; printf("The Value of i is : %d", i); i = i + 5; printf("nThe Value of i is : %d", i); i = i - 2; printf("nThe Value of i is : %d", i); i = i * 2; printf("nThe Value of i is : %d", i); i = i / 4; printf("nThe Value of i is : %d", i); i++; printf("nThe Value of i is : %d", i); i++; printf("nThe Value of i is : %d", i); i --; printf("nThe Value of i is : %d", i); getchar(); return(0) ; }
Read more Similar C Programs Learn C Programming Number System
You can easily select the code by double clicking on the code area above.
To get regular updates on new C programs, you can Follow @c_program
You can discuss these programs on our Facebook Page. Start a discussion right now,
our page!
Share this program with your Facebook friends now! by liking it
(you can send this program to your friend using this button)
Like to get updates right inside your feed reader? Grab our feed!
(c) www.c-program-example.com
One comment on “C Program to illustrate Arithmetic operators”
Sample C Program To Accept A String & Display Number Of Vowels.
Sample C Program To Accept A String & Display Number Of Each Vowels.
Sample C Program To Accept A String & Find Out Whether This Character Is Present In The String.
Sample C Program To Find Out The No. Of Times A Character Is Present In The String.
Sample C Program To Understand Working Of Address Concept.
Sample C Program On Use Of Array & Pointer Concept Together.
Sample C Program On Pointers & 2 – Dimensional Array.
Sample C Program On Strings Into Array Of Pointers.
Sample C Program To Accept & Add Ten Numbers Using Pointers.
Sample C Program To Implement Recursive Algorithm Using Pointers.
Sample C Program With Algorithm To Implement Bubble Sort Using Pointers.
Sample C Program To Implement Selection Sort Using Pointers, Arrays & Functions.