everybody out there i write a very simple c code which is following:
#include<stdio.h>
int sum(int x ,int y);
int mult(int x, int y);
int div(int x , int y);
int main()
{
int a,b,s,m,d;
system("clear");
a =20;
b =40;
s=sum(a,b);
m=mul(a,b);
d=div(a,b);
printf("\n the sum of given no. = %d\nThe product of given no. = %d\nThe division of given no = %d",s,m,d);
return 0;
}
the name of the file is exp.c than i write the following code:
#include<stdio.h>
int sum( int x ,int y)
{
int z;
z=x+y;
return z;
}
i saved it as sum.c than i write the following code :
#include<stdio.h>
int mult( int z ,int u)
{
int v ;
v=z*u;
return v;
}
save it as mul.c than i write the following code
#include<stdio.h>
int div (int a, int b)
{
int f;
f=a/b;
return f;
}
save it as div .c
i want to use all file as a single project. i want exp.c use the function defined in mul.c,div.c,sum.c. so i write a makefile the project which is following:
fun : exp.c
gcc exp.c
exp.c : sum.o mul.o div.o
sum.o :sum.c
gcc -c sum.c
mul.o :mul.c
gcc -c product.c
div.o : div.c
gcc -c div.c
now my problem is that i run make command i got following error:
exp.c:(.text+0x31): undefined reference to `sum'
exp.c:(.text+0x43): undefined reference to `mult'
what i'm doing wrong?
do i need header files ?
how can i do this without header files?
how to execute the program without make file ?
how to use gcc-o sum.c mul.c,div.c commands to run the project ? Please give me a detailed description