由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Unix版 - gcc 编译的时候要包括 header source file 吗?
相关主题
What's wrong with "CXTERM"CXTERM INSTALL : HELP !a puzzle!!
bsplit.c[转载] Shell高手看过来。
[转载] about header file[转载] qestion about grep
[转载] 再请教高手Re: ctrl+c doesn't work in csh, (solved)
makefile 文件是不是可以看作一种shell?提示我 too many ('s 怎么办?
哪位大虾熟悉gnu的make?Which package to contains ANSI C headers in IRIX?
[转载] 求救问问header 文件的位置
看看我的第一个小script为什么不工作how to set include PATH
相关话题的讨论汇总
话题: pphh话题: file话题: include话题: void话题: header
进入Unix版参与讨论
1 (共1页)
s********1
发帖数: 581
1
gcc 编译的时候要包括 header source file 吗?
main.c 的程序中引用了sub.h 和 sub.c 中定义的function pphh(),
***************************************************************
//File: main.c
#include
#include "sub.h"
void main()
{
pphh();
}
*************************************************
//File: sub.h
#ifndef _sub_h
#define _sub_h
void pphh();
#endif
************************************************
//File: sub.c
#include
#include "sub.h"
void pphh()
{
printf("pphh\n");
}
************************
1 (共1页)
进入Unix版参与讨论
相关主题
how to set include PATHmakefile 文件是不是可以看作一种shell?
a problem哪位大虾熟悉gnu的make?
Re: [转载] 求教:如何把自己的头文件目录加到系统默认的路径里?[转载] 求救
Re: how to automatically send email with attachments in Perl?看看我的第一个小script为什么不工作
What's wrong with "CXTERM"CXTERM INSTALL : HELP !a puzzle!!
bsplit.c[转载] Shell高手看过来。
[转载] about header file[转载] qestion about grep
[转载] 再请教高手Re: ctrl+c doesn't work in csh, (solved)
相关话题的讨论汇总
话题: pphh话题: file话题: include话题: void话题: header