Q&A
Ask and answer questions to make information more available to wider audiences.
Martin Abshire @abshiremartin   06, Apr 2023 12:00 AM
increment and decrement
What is the process to create increment and decrement statement in C?
answers 1
 
Answer 1
Emiliano Akemon @akemonemiliano   06, Apr 2023 04:29 PM
There are two possible methods to perform this task. Use increment (++) and decrement (-) operator. For example when x=4, x++ returns 5 and x- returns 3.