请教:两个程序的连接问题
file1里的主函数调用file2的被调函数这是file1.c
#include<stdio.h>
#include"file1.c"
int a;
main()
{int power(int);
int b=3,c,d,m;
printf("enter the number a and its power m:\n");
scanf("%d,%d",&a,&m);
c=a*b;
printf("%d * %d=%d",a,b,c);
d=power(m);
printf("%d * %d=%d",a,m,d);
}
这个是file2.c
extern a;
power(int n);
{int i,y=1;
for(i=1;i<=n;i++)
y=a*y;
return(y);
}
不知道如何才能将两个程序连接起来,还望前辈们详细指点啊,最好是能详细点的