以下程序是求矩阵a,b的和,结果存入矩阵c中,并按矩阵形式输出,请填空。 include<stdio.h>
查看答案
粉尘、毒物超过国家标准的作业场所的作业人员必须佩戴什么?
阅读下面程序,则程序的执行结果为【 】。 include"stdio.h" fun(int k,int*p) { int a,b; if(k==1‖k==2) *p=1; else{ fun(k-1,&a); fun(k-2,&b); *p=a+b; } } main() { int x; fun(6,&x); printf("%d\n",x);}