........hello.h..............
ifndef HELLO.H
define HELLO.H
int help(int a,int b);
endif
........hello.c.....................
int help(int a,int b)
{
...
...
..
}
.........main.c........
include "hello.h"
int main
{
........
.........
c=help(a,b)
....
}