#include<stdio.h>
int main()
{
void add();
int i=2;
add(i++,--i);
print("%d",i)
}
void add(int a,int b)
{
print("%d %d",a,b);
}
/*what are a and b's value i am actually not getting the answer why b is 2 */
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…