方法一:
共有三个文件:print.h,print.c,test.c
***************************************************************
print.h: 文件内容
#ifndef PRINT_H
#define PRINT_H
#ifdef __cplusplus
extern " C " {#endif //打印点东西
void Print(int iNum);#ifdef __cplusplus
}#endif
#endif
***************************************************************
***************************************************************
print.c: 文件内容
#include #include "print.h"
void Print(int iNum)
{
switch(iNum)
{
case 1:
printf("hello,this is 1/n");
break;
case 2:
printf("ok ,2 now/n");
break;
default:
printf("hihi,default now /n");
break;
}
getch();
r