請依下列的定義完成函數。
#include <stdio.h>
///
///函數名稱 count
///函數功能 計算字串當中出現特定子字串的次數
///參數說明
///str 要被搜尋的字串
///key 子字串
///
int count(const char str[], const char key[]);
int main()
{
char str[1000], key[1000];
gets(str);
gets(key);
printf(“子字串共出現 %d 次”, count(str, key));
return 0;
}
int count(const char str[], const char key[])
{
}