If we have
a=5;
c=++a + ++a + ++a;

What would be value of c after this statement and how does it come?

If we have the code
a=5;
c=a++ + a++ + a++;