fork download
  1. #include <stdio.h>
  2.  
  3. typedef struct {
  4. short ano;
  5. char mes;
  6. char dia;
  7. } Data;
  8.  
  9. void print(Data data) {
  10. printf("%d/%d/%d", data.dia, data.mes, data.ano);
  11. }
  12.  
  13. int main(void) {
  14. print((Data){ 2020, 06, 10 });
  15. }
  16.  
  17. //https://p...content-available-to-author-only...a.com/As-estruturas-podem-ser-passadas-como-par%C3%A2metros-de-fun%C3%A7%C3%B5es-Justifique-a-sua-resposta
Success #stdin #stdout 0s 4292KB
stdin
Standard input is empty
stdout
10/6/2020