使用vi新建CentOS mytest文件学习c语言编程
CentOS mytest系统的特性,既可作为高校计算机专业CentOS mytest学习,也可以作为CentOS mytest系统开源爱好者、XX系统用户的学习。今天学习点c语言编程,学习c语言编程时要了解如何编译调式及运行c语言程序。
先使用vi新建一个CentOS mytestc.c文件。
并且输入相关的c程序代码如下操作:[OK_008@CentOS4 ~]$ vi CentOS mytestc.c#include "stdio.h"in main(){printf("Hello,this is my first program.");}"CentOS mytestc.c" [New] 5L, 77C written开始编译。gcc主要时用来编译c/c++程序的。这里只用到gcc的简单参数-o 和 -g。o 表示设定输出文件名。
g 表示加入调式信息,为gdb准备[OK_008@CentOS4 ~]$ gcc -o CentOS mytestc -g CentOS mytestc.cCentOS mytestc.c:2: error: syntax error before "main" 编译错误,提示"main"前面语法错误,这里再使用vi来修改。发现main()前的数据类型int写成了in 比较晕哦,太马虎了。[OK_008@CentOS4 ~]$ vi CentOS mytestc.c#include "stdio.h"int main(){printf("Hello,this is my first program.");}
"CentOS mytestc.c" 5L, 78C written[OK_008@CentOS4 ~]$ gcc -o CentOS mytestc -g CentOS mytestc.c [OK_008@CentOS4 ~]$ ls --没有任何提示,说明测试通过,使用ls,我们发现目下下多了个编译后的CentOS mytestc文件。
debugtest Desktop CentOS mytestc.c mytxt.txt TestFiledebugtest.c CentOS mytestc mytxt1.txt OK008Filed untar[OK_008@CentOS4 ~]$ ./CentOS mytestc --该命令是执行刚才生成的CentOS mytestc文件。Hello,this is my first program.[OK_008@CentOS4 ~]$ --这里是执行结果,ok成功了为了好看,我修改一下程序加个回车。[OK_008@CentOS4 ~]$ vi CentOS mytestc.c