编写一个主程序文件main1.c和一个子程序文件sub1.h
编写一个main1.c程序
在编写一个sub1.h子函数
最后用gcc运行
#在windows系统下用VC6编译工具编译主程序main1.c
再编辑sub1.h子函数
最后在运行main1主函数,结果为
.在ubuntu系统下用Makefile方式编译主程序 ,在终端输入gedit makefile创建makefile文件
再输入gcc main1.o -o main编译
最后输入./main运行结果为
2022-01-29 14:30:42
编写一个主程序文件main1.c和一个子程序文件sub1.h
编写一个main1.c程序
在编写一个sub1.h子函数
最后用gcc运行
#在windows系统下用VC6编译工具编译主程序main1.c
再编辑sub1.h子函数
最后在运行main1主函数,结果为
.在ubuntu系统下用Makefile方式编译主程序 ,在终端输入gedit makefile创建makefile文件
再输入gcc main1.o -o main编译
最后输入./main运行结果为