有以下程序: #include<stdio.h>#include

有以下程序: #include<stdio.h>#include<stdlio.h>void fun(int*pl,int*p2,int*s){  s=(int*)malloc(sizeof(int));  *s=*pl+*p2;  free(s); }main(  )    { int a=1,b=40,*q=&a;  fun(&

问题:

[单选] 有以下程序:
#include<stdio.h>
#include<stdlio.h>
void fun(int*pl,int*p2,int*s)
{ s=(int*)malloc(sizeof(int));
 *s=*pl+*p2;
 free(s);
}
main(  )
{ int a=1,b=40,*q=&a;
 fun(&a,&b,q);
 printf("%d",*q);
}
程序运行后的输出结果是(  )。

A . 42
B . 0
C . 1
D . 41

参考答案:C

参考解析:

Fun函数功能是新开辟内存空间存放a和b的地址,q的地址并没有变化,所以应该还是指向地址a。

联系我们

联系我们

查看联系方式

邮箱: 2643773075@qq.com

工作时间:周一至周五,9:00-17:30,节假日休息

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部