Use of post increment and pre increment in c
increment operators are used to increase the value by one in the variable defined in C Program
decrement works opposite increment
Heading-2
Pre-increment (++i):-Before assigning the value to the variable, the value is incremented by one
Post-increment (i++):− After assigning the value to the variable, the value is incremented