Function prototypes in standard C
and C++
•
// main.c
•
•
int func (int a, int b);
•
•
int main ()
•
{
•
int locVar;
•
•
func (1, 2);
•
return 0;
•
}
•
•
// func.c
// Next release:
//
add third parameter c
int func (int a, int b);
int func (int a, int b)
{
// use parameters
return 0;
}