私はこのコードをコンパイルしようとします:
#include <stdio.h>
void print(FILE *a)
{
int main();
int count=20;
int c;
int stop=0;
char answer;
while(!stop){
while((c=getc(a))!=EOF){
fprintf(stdout,"%c",c);
if(c=='\n'){
count--;
if(!count){
printf("do you want continue:y=for continue/q=for quit");
fflush(stdin);
answer=getchar();
if(answer=='y' || answer=='Y')
count=20;
else if(answer=='Q' || answer=='q'){
printf("you quit this program,press any key and hit the enter to close");
stop=1;
break;
}
else{
printf("argument is unacceptable,rolling back action");
main();
}
}
}
}
if(c==EOF)
stop=1;
}
}
void halt()/*do nothing just for halt and waiting for input*/
{
int a;
scanf("%d",&a);
}
int main()
{
FILE *in,*fopen();
char name1[25];
int a;
printf("enter the name of the file you want to show:");
scanf("%24s",name1);
in=fopen(name1,"r");
if(in==NULL){
printf("the files doesnt exist or it is in another directory, try to enter again\n");
main();
}
else
print(in);
fclose(in);
halt();
return 0;
}
プログラムの目的は、ファイルの 20 行の内容を表示することです。Windows XP で lccwin32 を使用してコンパイルしたところ、期待どおりに動作しました。Ubuntu:pricise pangolin 12.04 LTS Desktop
しかし、OS を Linux ( ) に変更して gcc でコンパイルすると問題が発生しy
ますq
。しかし、何も起こりません。それはプログラムを再開している部分に滑り落ちただけですelse
.gccにバグがありますか、コードがgccに合わないのでしょうか、それとも何かを見逃したのでしょうか?