What is the process to create increment and decrement statement in C?
Shathana. S.R. Answered question May 29, 2023
We can do this in two different ways.
1) By using the increment operator ++ and the decrement operator. for example, the statement “i+=” means to increment the value of x by 1. Like, The statement “x-” means to decrement the value of x by 1
Shathana. S.R. Answered question May 27, 2023

We can do this in two different ways. 1) By using the increment operator ++ and the decrement operator. for example, the statement “i+=” means to increment the value of x by 1. Like, The statement “x-” means to decrement the value of x by 1.