文字列の検索について
Posted: 2017年7月30日(日) 18:41
Visual stdio 2017 です。
#include <stdio.h>
char test1[4];
char test2[16] = "sos filenonfile";
int main(void){
printf("文字入力せよ:\n");
scanf("%s", test1);
result ();
return 0;
}
こちらのコードで、result()関数を利用して、重なっている文字列があるときに、どこから重なっているかを、
分析・判定するプログラムを作りたいのですが、どなたか分かる方いませんか?
御願い致します。
#include <stdio.h>
char test1[4];
char test2[16] = "sos filenonfile";
int main(void){
printf("文字入力せよ:\n");
scanf("%s", test1);
result ();
return 0;
}
こちらのコードで、result()関数を利用して、重なっている文字列があるときに、どこから重なっているかを、
分析・判定するプログラムを作りたいのですが、どなたか分かる方いませんか?
御願い致します。