问题
问答题
void fot(int *p1,int *p2)
printf("%d,%d\n",*(p1++),++*p2);
int x=371,y=269;
main()
fot(&x,&y);
fot(&x,&y);
答案
参考答案:371,270
371,271
void fot(int *p1,int *p2)
printf("%d,%d\n",*(p1++),++*p2);
int x=371,y=269;
main()
fot(&x,&y);
fot(&x,&y);
参考答案:371,270
371,271