Increment or Decrement Operators In C:
Code:
Output:
Example program for decrement operators in C:
Output:
- Increment operators are used to increase the value of the variable by one and decrement operators are used to decrease the value of the variable by one in C programs.
- Syntax: Increment operator: ++var_name; (or) var_name++;
- Example: Increment operator : ++i ; i++ ;
Decrement operator: –-var_name; (or) var_name –-;
Decrement operator : -–i ; i-- ;
- In this program, value of “i” is incremented one by one from 1 up to 9 using “i++” operator and output is displayed as “1 2 3 4 5 6 7 8 9”.
Code:
//Example for increment operators #include <stdio.h> int main() { int i=1; while(i<10) { printf("%d ",i); i++; } }
1 2 3 4 5 6 7 8 9
Example program for decrement operators in C:
- In this program, value of “I” is decremented one by one from 20 up to 11 using “i–” operator and output is displayed as “20 19 18 17 16 15 14 13 12 11”.
//Example for decrement operators #include <stdio.h> int main() { int i=20; while(i>10) { printf("%d ",i); i--; } }
20 19 18 17 16 15 14 13 12 11
1 Comments For "Increment or Decrement Operators In C"
Test Comment