Solution: no more bugs
•
// main.c
•
•
#include “func.h”
•
•
int main ()
•
{
•
int locVar;
•
•
func (1, 2);
// <- ERROR
•
return 0;
•
}
•
•
// func.h
int func (int a, int b, int c);
// func.c
#include “func.h”
int func (int a, int b, int c)
{
// use parameters
return 0;
}