forked from aed-i-2024-q1/student-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
structs.c
56 lines (46 loc) · 1.04 KB
/
structs.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/**
* Demonstration of structures, simple and composite
*/
#include <stdio.h>
void simple_structure() {
struct Aluno {
char nome[100];
int idade;
char conceito;
};
struct Aluno a1 = {
.nome = "Joao",
.idade = 20,
.conceito = 'A'
};
printf("%s tem %d anos e obteve %c\n", a1.nome, a1.idade, a1.conceito);
}
void composite_structure() {
struct Data {
unsigned short dia;
unsigned short mes;
unsigned short ano;
};
struct Aluno {
char nome[100];
int idade;
char conceito;
struct Data nascimento;
};
struct Aluno a1 = {
.nome = "Joao",
.idade = 20,
.conceito = 'A',
.nascimento = {
.dia = 1,
.mes = 1,
.ano = 2000
}
};
printf("%s nasceu em %d/%d/%d\n", a1.nome, a1.nascimento.dia, a1.nascimento.mes, a1.nascimento.ano);
}
int main(void) {
simple_structure();
composite_structure();
return 0;
}