Advertisement
FAMDS

1

Nov 15th, 2022
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <conio.h>
  3. #include <locale.h>
  4. int
  5. main ()
  6. {
  7. struct horario {
  8. int hora;
  9. int minuto;
  10. int segundos;
  11. };
  12.  
  13. struct data {
  14. int dia;
  15. int mes;
  16. int ano;
  17. }
  18.  
  19. struct compromisso{
  20. struct data datacompromisso;
  21. struct horario horariocompromisso;
  22. char descricaocompromisso[50];
  23.  
  24. }
  25. return 0;
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement