编写程序,显示c语言源程序文件,显示的同时加上行号。
展开全部
本程序读取显示D盘下一个名为a.c的源程序:
#include "stdio.h"
#include <string.h>
main()
{
FILE *fp;
int i=1;
char text[1024];
fp = fopen("d:\\a.c","r");
while(fgets(text,1024,fp)!=NULL)
{
printf("%3d",i++);
printf("%s",text);
memset(text,'\0',1024);
}
fclose(fp); getch();
}
#include "stdio.h"
#include <string.h>
main()
{
FILE *fp;
int i=1;
char text[1024];
fp = fopen("d:\\a.c","r");
while(fgets(text,1024,fp)!=NULL)
{
printf("%3d",i++);
printf("%s",text);
memset(text,'\0',1024);
}
fclose(fp); getch();
}
更多追问追答
追问
这个是准确的么?我们在上机考试,这道题我们班都写不出来,被我抽到了。跪求啊
追答
肯定正确,我测试过了。最后那就getch();只是为了停住屏幕显示,要是你用的win-tc编译器就加上,其他编译器就不用了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询