这段C语言程序为啥运行时显示Debug error和Runtime error?怎么改?(问题截止到2019年3月17日17时00分)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了这段C语言程序为啥运行时显示Debug error和Runtime error?怎么改?(问题截止到2019年3月17日17时00分)相关的知识,希望对你有一定的参考价值。
有网友碰到过这样的程序运行显示debug error ,runtime error。。。,问题详细内容为:#include<stdio.h>#include<stdlib.h>intmain()FILE*fp;structstucharname[15];charnum[10];floatscore;student;fp=fopen("info.txt","w");if(fp==NULL)printf("cantopenthefile\...#include <stdio.h>#include <stdlib.h>
int main()
FILE* fp;
struct stu
char name[15];
char num[10];
float score;
student;
fp = fopen("info.txt", "w");
if(fp == NULL)
printf("cant open the file\n");
exit(1);
printf("input information of student:\n");
printf("name:");
scanf("%s", student.name);
printf("num:");
scanf("%s", student.num);
printf("score:");
scanf("%s", &student.score);
printf("%s %s %7.2f", student.name, student.num, &student.score);
fclose(fp);
return 0;
展开,我搜你通过互联网收集了相关的一些解决方案,希望对有过相同或者相似问题的网友提供帮助,具体如下:
解决方案1:
scanf("%s", &student.score);
==>
scanf("%f", &student.score);追问输错了,那个地方改了后还是同样的错误追答printf("%s %s %7.2f", student.name, student.num, &student.score);
==>
printf("%s %s %7.2f", student.name, student.num, student.score); 参考技术A ydydygugihibucrxfxhvibonifsdibiguzuohivugfyfyfuvjfugbdrydtduftdurdph 参考技术B 有网友碰到过这样的程序运行显示debug error ,runtime error。。。,问题详细内容为:#include#includeintmain()FILE*fp;structstucharname[15];charnum[10];floatscore;student;fp=fopen("info.txt","w");if(fp==NULL)printf("cantopenthefile\...#include 参考技术C 调试错误和执行错误,你最好把源代码发出来,这样别人才知道是哪里错了追问
太长了超字数了
为啥我用vs2012编完c语言之后调试时显示“无法启动程序,系统找不到指定文件”?
首先安装vs一二要安装vc++工作平台vs一5默认安装一二应该差没安装没关系重新运行安装程序点击修改编程语言勾选完打软件左边文件选项左键新建项目visualc++空项目建界面右项目框架光标定位项目名或原文件文件夹处右键添加新建项文件名改main.c注意.c缀.cppc++编程环境
纯手打望采纳谢 参考技术A 我之前也遇到了这样的问题,整个软件装了卸载再重装,也参考了网上很多资料,不过都不行,后来我还是重装,不过从开始安装到完成安装中间要重启两次电脑,还有就是我把配置的opencv和VS2012放在一个盘,最后还是成功了,立马的神清气爽啊~希望对你又帮助~ 参考技术B 你工程建立的时候选择的是application那一类吗?不小心选成library那一类的话就没办法启动了。
把代码复制出来,重新建立一个工程然后粘回去/添加回去看看
以上是关于这段C语言程序为啥运行时显示Debug error和Runtime error?怎么改?(问题截止到2019年3月17日17时00分)的主要内容,如果未能解决你的问题,请参考以下文章
为啥Java聊天室程序运行时显示“不能写入到指定服务器”?求大神!
为啥我用vs2012编完c语言之后调试时显示“无法启动程序,系统找不到指定文件”?
为啥运行“git branch -r”时显示“origin/HEAD”?