[求助]请问怎么样才能生成一个头文件
假设程序aprogram包括两个C语言源文件hello.c与startup.c。文件hello.c包含下列代码:
#include <stdio.h>
void hello (void)
{
printf ("Hello!\n");
}
文件startup.c包含主程序,其功能是调用函数hello:
#include "hello.h"
int main (void)
{
hello();
return 0;
}
那么请问怎么样才能把hello.c生成hello.h呢?不然#include "hello.h"这句就不正确了