Sample1.c
#include "stdio.h"
int f1(int x, int y)
{
printf("%d %d", x, y);
return x+y;
}
Sample2.c
#include "stdio.h"
extern int f1(int x,int y);
int main(void)
{
printf(" %d\n", f1(5,6));
return 0;
}
I was trying to compile the Sample1.c
file then Sample2.c
on Turbo C/C++ Compiler (Windows XP). It shows the following error:
Compiling Sample2.c:
Linking Sample2.exe:
Linker Error : Undefined Symbol _f1 in module Sample2.c
Can anybody help me on this regard?