Posts by Lucas Martins • 1 point
1 post
-
-3
votes1
answer59
viewsQ: What flag could I use to stop the execution of the ler_disciplinas function?
#include <stdio.h> #include <string.h> #include <stdlib.h> typedef struct materias { char disciplinas[20]; char semana[7][15]; }materias; void ler_disciplinas (); int main(){…