increment

  1. arpanmukherjee1

    c problem

    hello i want to know how the Turbo cpp (yes, the dinosaur one) and g++ give different output: a=10 ++a + ++a = 24 (g++) & 23 (TC) a++ + a++ = 20 ++a - a++ = 0 (g++) & -1(TC) please explain pre and post increment and decrement in this prgs. also please tell how to obtain output of such prgs...
  2. vamsi_krishna

    Posts Counting in this forum

    Hello, I've been posting many replies and starting new threads. But there has been no increment in the posts count under my username. What's the problem?
  3. clmlbx

    how does increment & for loops work in c?

    a=2 printf(++a * a++ * a++ * ++a) answer is 216 how ?? and how is for loop used ?
Top Bottom