编写一个函数,该函数可以统计一个长度为2的字符串在另一个字符串中出现的次数。例如,假定输入的字符串为asd asasdfg asd as zx67 asd mklo,子字符串为as,则应当输出6。 注意:部分源程序给出如下。 请勿改动主函数main和具他函数中的任何内容,仅在函数fun的花括号中填入所编写的若干语句。 试题程序: include <conio.h> include <stdio.h> include <string.h> int fun(char *str, char *substr) { } main ( ) { char str[81],substr[3]; int n; clrscr (); printf ('输入主字符串 '); gets (str); printf ('输入子字符串'); gets (substr); puts (str); puts (substr); n=fun (shr, substr); printf('n=%d/n ',n); }