After preprocessing the line
Posted
by hardware
on Stack Overflow
See other posts from Stack Overflow
or by hardware
Published on 2010-04-25T08:48:13Z
Indexed on
2010/04/25
8:53 UTC
Read the original article
Hit count: 157
c++
After preprocessing the line
j=a(i+1); will be:
j=(i+1*i+1); which when evaluated for i=3 will give j=7:
j=(3+1*3+1);
© Stack Overflow or respective owner