Linux 在主程序中调用子程序
(2012-08-07 22:17:19)
标签:
杂谈 |
1.编辑主程序:
vi thanks.c
#include<stdio.h>
int main(void)
{
}
#上面的 thanks_2(); 那一行就是调用子程序!
2.编辑子程序
vi thanks_2.c
#include<stdio.h>
void
{
}
3.进行程序的编译与链接
gcc -o thanks thanks.c thanks_2.c
4.运行程序
./thanks
5.结果
hello world!
thank you!