4
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 one menu.c
separate. Then include the menu.c
within 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 the projeto.c
above.
If you add more details of what you are doing, I improve the answer. Like what was posted, I can’t answer more than this.
– Maniero
All right, you’ve helped me enough. I haven’t done much yet, but what I’m thinking of doing is a simple HR program, where it stores all the employee information and so on. What I wanted to do is a main archive. c , a menu. c and a loginsenha. c to separate everything and maybe try to leave more organized...
– Marcielli Oliveira