I am developing a simple program to deliver at the end of the first semester and would like to know if it is possible to create a main project and make the menu in a separate menu.c
. Then include the menu.c
file inside the main project?
Example:
#include <stdio.h>
int main () {
/* Esse é o projeto principal que esta salvo como projeto.c
e queria incluir aqui o menu.c */
return(0);
}
Then I want to save menu.c
and include it within projeto.c
above.