VS2010编译C程序出错比如一个最简单的C程序,求两个数中的最大值 就会出错,具体看下面
求最大数:#include"stdafx.h"int_tmain(intargc,_TCHAR*argv[]){return0;}#include"stdio.h"voi...
求最大数:
#include "stdafx.h"
int _tmain(int argc, _TCHAR* argv[])
{
return 0;
}
#include"stdio.h"
void main()
{
int x,y,z;
int max(int a,int b);
scanf("%d,%d,&x,&y");
z=max(x,y);
printf("maxmum=%d",z);
}
int max(int a,int b)
{
if(a>b)return a;else return b;
}然后是按F5调试,跳出这样的一个错误
求最大数.exe 中的 0x102de42e (msvcr100d.dll) 处有未经处理的异常: 0xC0000005: 写入位置 0x7c930041 时发生访问冲突
请大伙儿帮个忙,这里献上10分,谢谢大家了! 展开
#include "stdafx.h"
int _tmain(int argc, _TCHAR* argv[])
{
return 0;
}
#include"stdio.h"
void main()
{
int x,y,z;
int max(int a,int b);
scanf("%d,%d,&x,&y");
z=max(x,y);
printf("maxmum=%d",z);
}
int max(int a,int b)
{
if(a>b)return a;else return b;
}然后是按F5调试,跳出这样的一个错误
求最大数.exe 中的 0x102de42e (msvcr100d.dll) 处有未经处理的异常: 0xC0000005: 写入位置 0x7c930041 时发生访问冲突
请大伙儿帮个忙,这里献上10分,谢谢大家了! 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询