介导Ⅰ型超敏反应的抗体是()
A.IgM
B.IgG
C.IgE
D.SIgA
E.IgD
参考答案:C
在联合国的主要机构中,有权采取行动维持国际和平与安全的机关是( )。
A.大会
B.安理会
C.国际法院
D.秘书处
以下程序运行时输出结果是()。
#include
int count(char s[])
{ int i=0;
if(s[i]==’\0’) return 0;
while(isalpha(s[i]))i++;
while(!isalpha(s[i])&&s[i]!=’\O’)i++;
return 1+count(&s[i]);
}
void main()
{char line[]="one world,one dream.";
printf("%d",count(line));