Difference between pre increment and post increment in c programing language
Answers
Answered by
0
pre increment is written as
let a be a variable
++a - this implise that first the no will be added and then saved
post increment is written as
let a be a variable
a++-this implies that first the no will be saved and then added.
let a be a variable
++a - this implise that first the no will be added and then saved
post increment is written as
let a be a variable
a++-this implies that first the no will be saved and then added.
Similar questions