
c语言编程
c语言
小高写BUG
只问耕耘,不问收获。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C语言平方的实现
C语言平方的实现 #include <stdio.h>//2019级河北师大禁止抄袭 #include <math.h>//平方所需要的库 int main(void) { int a,n,box=0; int i,sum=0; double m; scanf("%d %d",&a,&n); for(i=1;i<...原创 2020-05-07 17:55:25 · 15355 阅读 · 2 评论 -
Run-Time Check Failure #2 - Stack around the variable 'arr' was corrupted.
一开始我用的arr[5][5]就内存溢出了 Run-Time Check Failure #2 - Stack around the variable ‘arr’ was corrupted. #include <stdio.h> int main(void) { int arr[6][6]={0};//解决了内存溢出的问题 int i,j,max=0; for...原创 2020-05-07 17:51:25 · 1820 阅读 · 0 评论