#include <stdio.h>
int call_me(void);
int main()
{
int c,count=0;
do{
printf("Call me please!(Y:1/N:0):");
scanf("%d",&c);
if(c==1){
int call_me(void);
}while(c!=0);
return 0;
}
int call_me(void)
{
void display(){
int count;
count++;
printf("Thank you for your %d time call!",count);
return count;
}
}
<エラーメッセージ>
main.c:14:1: error: expected ‘while’ before ‘int’
14 | int call_me(void)
| ^~~
main.c:22:1: error: expected declaration or statement at end of input
22 | }
| ^
一体どこを改善すればこれらのエラーは無くなるのでしょうか。どうか教えて下さい。