Computer Science, asked by bhukurt4397, 1 year ago

Difference between pre increment and post increment in c programing language

Answers

Answered by devangitibarewp8yxe8
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.
Similar questions