如何使用其他的c文件中定义的函数或者结构体
1个回答
展开全部
首先,所有c源程序需要添加到一个工程中,一起编译、连接
假定b.c中定义了结构和函数的实例:
struct STUDENT struStudent[20];
int func(char *name) { return strlen(name); }
b.h中写明结构STUDENT的具体定义和函数头部描述:
struct STUDENT { char name[20]; int age,sex };
int func(char *name);
a.c中要使用b.c中开设的变量struStudent数组和函数func,可以写:
#incude<b.h>
extern struct STUDENT struStudent[20]; //或者将此句搬移到b.h中也行
void main() { int i;
for ( i=0;i<20;i++ ) {
scanf("%s",struStudent[i].name);
printf("%d\n",func(struStudent[i].name));
}
}
假定b.c中定义了结构和函数的实例:
struct STUDENT struStudent[20];
int func(char *name) { return strlen(name); }
b.h中写明结构STUDENT的具体定义和函数头部描述:
struct STUDENT { char name[20]; int age,sex };
int func(char *name);
a.c中要使用b.c中开设的变量struStudent数组和函数func,可以写:
#incude<b.h>
extern struct STUDENT struStudent[20]; //或者将此句搬移到b.h中也行
void main() { int i;
for ( i=0;i<20;i++ ) {
scanf("%s",struStudent[i].name);
printf("%d\n",func(struStudent[i].name));
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询