Post-decrement and Pre-decrement Operator: C Program


In this video tutorial we show the differences and working of post-decrement and pre-decrement operators.

Note: In pre-decrement, first the value of the variable is decremented after that the assignment or other operations are carried. In post-decrement, first assignment or other operations occur, after that the value of the variable is decremented.

Note:
a- -;
– -a;
a = a – 1;
a -= 1;

are all same if used independently.

Post-decrement and Pre-decrement Operator: C Program



YouTube Link: https://www.youtube.com/watch?v=eaGXQ-GgLPw [Watch the Video In Full Screen.]


Pre-decrement Operator: C Program

  1. #include < stdio.h >  
  2.   
  3. int main()  
  4. {  
  5.     int a = 10, b;  
  6.   
  7.     b = --a;  
  8.   
  9.     printf("b = %d\n\n", b);  
  10.     printf("a = %d\n", a);  
  11.   
  12.     return 0;  
  13. }  

Output:
b = 9
a = 9

Here first the value of a decrements and then is assigned to variable b. So both a and b value will be 9.

  1. #include < stdio.h >  
  2.   
  3. int main()  
  4. {  
  5.     int a = 10;  
  6.   
  7.     printf("a = %d\n\n", --a);  
  8.     printf("a = %d\n", a);  
  9.   
  10.     return 0;  
  11. }  

Output:
a = 9
a = 9

Here in the first printf statement a value gets decremented and then printed out.

Post-decrement Operator: C Program

  1. #include < stdio.h >  
  2.   
  3. int main()  
  4. {  
  5.     int a = 10, b;  
  6.   
  7.     b = a--;  
  8.   
  9.     printf("b = %d\n\n", b);  
  10.     printf("a = %d\n", a);  
  11.   
  12.     return 0;  
  13. }  

Output:
b = 10
a = 9

Here first value of a(i.e., 10) is assigned to b and then value of a is decremented. So b = 10 and a = 9 is printed.

  1. #include < stdio.h >  
  2.   
  3. int main()  
  4. {  
  5.     int a = 10;  
  6.   
  7.     printf("a = %d\n\n", a--);  
  8.     printf("a = %d\n", a);  
  9.   
  10.     return 0;  
  11. }  

Output:
a = 10
a = 9

Here in the first printf statement a value gets printed after that its value gets decremented, which is shown in second printf statement.

For list of all c programming interviews / viva question and answers visit: C Programming Interview / Viva Q&A List

For full C programming language free video tutorial list visit:C Programming: Beginner To Advance To Expert

Leave a Reply

Your email address will not be published. Required fields are marked *