Increments and decrements

Introduction

Introduction

--a; // this was introduced in c++, not in c. c just has a-- (ditto for ++)

y=x++;
y=--x;

if x is 2, result of both is x=3 but top y=2, bottom y=3. order of evaluation. does this apply to regular c?