下列程序的输出结果是( )。
#include
void p(int*x)
{ printf("%d ¨, ++*x);
}
void main()
{ int y=3;
p(&y);
}
B
暂无解析
下列说法不正确的是( )。
有以下程序:输出的结果是( )。
#include<
struct stu
{ int num;
char name[10] :
int age;}
void fun(struct stu*p)
{printf("%sn" ,(*p).name);}
tllain()
{
struct stu students[3]={{9801 ,"Zhang".20} ,
{9802 ,"Wang",19},{9803 ,"Zhao" ,1 8}}
fun(students+2);
}