If you work on a Makefile project or simply run your code from command line, use
gcc -IC main.c
where -I
option adds your C
directory to the list of directories to be searched for header files, so you'll be able to use #include "structures.h"
anywhere in your project.