#include <stdio.h>
#include <conio.h>
main (){
int i;
char buf[6];
char buf2[6];
buf2[5] = 0;
while(1){
makestr(buf);//←これは適当な5文字を代入する関数を作ってください。
printf("%s\n", buf);
for(i=0; i<5; i++){
buf2[i] = getch();
printf("%c", buf2[i]);
}
//このあたりに比較するコードを書く
}
return;
}
途中までやってたけど面倒になった。