I'm learning the #include command. I want to write a program which prints some datas (square miles of certain seas), so I created an header file sea.h, in which I defined (using #define) some dates.
Then I want to include this last file on a new file sea.c, but I have some problem. My program sea.c begins as follows
#include <stdio.h>
#include <sea.h>
int main(void)
{stuff}
when I compile, I get several errors, all related to the first one: next to
#include<sea.h>
it is written:
!sea.h: no such file or directory.
How can I fix this?