为什么这个地方exit(1)会被提示 exit was not declared in this scope
\ 21行 解决方案 20 加上头文件stdlib.h 20 exit在头文件 <stdlib.h>里 http://en.cppreference.com/w/c/program/exit ……
04-14 立刻查看
[求帮助]输出链表总是开头两个出现乱码
#include<stdio.h> #include<stdlib.h> #include<string.h> typedef struct Equip //定义结构体 { char equipCode[10]; //编号 char equipType[20]; //种类 char equipName[20……
04-14 立刻查看
怎么用notepad++运行C程序
刚下notepad++ ,听说很方便的一个文本编译器。新手来的,按网上一些教程设置了什么path之后 还是提示 “gcc” 不是内部或外部命令,也不是可运行的程序或批处理文件 想问下怎么使用 解决方案 2 notepad之类的编辑器本身是不能编译c程序的,需要有专门的编译器,例如gcc。然后需要设置编译指令来编译。 1 还是这个吧,只……
04-14 立刻查看