在C程序中,若对函数类型未加说明,则函数的隐含类型为_________
表达式strlen(“hello”)的值是________
以下程序的输出结果是_____________long fun(int n){ long s;if(n==1||n==2) s=2;else s=n-fun(n-1);return s; }void main( ){ printf(“%ld\n”,fun(3)); }
以下程序的输出结果是_____________void main( ){ char st[20]=”hello\0\t\\”;printf(“%d %d\n”,strlen(st),sizeof(st));