网络上流行的“熊猫烧香”病毒属于______类型的病毒。
A) 蠕虫 B) 木马 C) 引导区 D) 目录
参考答案:A
解析: 熊猫烧香是一种感染型的蠕虫病毒,
喜马拉雅山是世界上最高大山脉,据测量,它现在每年仍在以每年0.33厘米的速度在上升.造成它不断升高的原因是( )
A.亚欧板块和印度洋板块不断张裂
B.非洲板块和印度洋板块不断张裂
C.印度洋板块不断挤压亚欧板块
D.非洲板块不断挤压印度洋板块
请编写一个函数void fun(cbara [], charb [], int n),其功能是:删除一个字符申中指定下标的字符。其中,a指向原字符串,删除后的字符串存放在b所指的数组中,n中存放指定的下标。 例如,输入一个字符串world,然后输入3,则调用该函数后的结果为word。 注意:部分源程序给出如下。 请勿改动主函数main 和其他函数中的任何内容,仅在函数fun的花括号中填入所编写的若干语句。 试题程序: # include <stdio.h> # include <conio.h> # define LEN 20 void fun (char a[], char b [], int n) main () char str1 [LEN], str2 [LEN]; int n ; clrscr (); printf ("Enter the string : \n") ; gets (str1) ; printf ("Enter the position of the string deleted: "); scanf ("%d", &n) ; fun (str1, str2, n) ; printf ("The new string is : %s \n",str2) ;