70,037
社区成员
发帖
与我相关
我的任务
分享#define myprintf(x) printf("the parament "#x" is %d\n",_____) //填上这个空使下面的输出成立
int main(void)
{
int a = 2;
int b = 9;
int c = 10;
myprintf(1);
myprintf(2);
myprintf(3);
return 0;
}
the parament 1 is 2
the parament 1 is 9
the parament 1 is 10int main(void)
{
struct a
{
char p;
char *q;
}st;
int *p = (int *)&st.p;
p[0] //题目未完,让我先从崩溃状态回复过来先
p[1]
p[2]
p[3]
p[5]
p = st.q;
p[5]
p[4]
p[3]
p[2]
p[1]
}