#include <stdio.h>
int main()
{
int a,b,c=1,d=1;
a = c++;
b = ++d;
printf("%d %d
", a,b);
return 0;
}
//++i是先加再使用,而i++是先使用再加
//输出结果 1 2
#include <stdio.h>
int main()
{
int a,b,c=1,d=1;
a = c++;
b = ++d;
printf("%d %d
", a,b);
return 0;
}
//++i是先加再使用,而i++是先使用再加
//输出结果 1 2