- 博客(7)
- 收藏
- 关注
原创 error:无法运行: 指定的可执行文件不是此操作系统平台的有效应用程序。
例如我这里fa数组开了5e8,运行报错。把fa数组大小改小到5e7,运行ok。原因是因为数组开太大了。
2023-07-19 10:28:45 798
原创 undefined reference to `WinMain@16‘collect2.exe: error: ld returned 1 exit status
undefined reference to `WinMain@16'
2022-07-12 13:37:31 1969 2
原创 链表实现学生信息管理系统(C语言)
#include <string.h>#include <stdio.h>#include <stdlib.h>#include <math.h>typedef int Status;int language;typedef struct{ char num[12]; char name[20]; char sex; int sum_of_subject; int grade[20];} stu;t.
2022-04-19 14:58:40 2475
原创 栈实现程序括号匹配器(C语言)
#include <stdio.h>#include <stdlib.h>#include <string.h>//#include <iostream>//#include <stack>// using namespace std;const char FH[6] = {'(', '{', '[', ')', '}', ']'};struct program{ char x; //存该符号 int y; .
2022-04-18 00:01:53 622
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人