-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstruct1.c
48 lines (41 loc) · 986 Bytes
/
struct1.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
#include <stdio.h>
#define DIM 5
typedef struct
{
char nome[10];
char ruolo[10];
char squadra[10];
} calciatore_t;
int StampaMilan(calciatore_t calciatori[])
{
for (int i = 0; i < DIM, i++)
{
if(calciatori[i].squadra, "milan"< DIM)
printf("%s", calciatori[i].nome);
}
}
int StampaC(calciatore_t calciatori[])
{
for (int i = 0; i < DIM, i++)
{
if (calciatori[i].nome == 'c')
printf("%s", calciatori[i].nome);
}
}
int main(int argc, char *argv[])
{
calciatore_t calciatori[DIM];
for (int i = 0; i < DIM; i++)
{
printf("inserisci nome");
scanf("%s", calciatori[i].nome);
printf("inserisci ruolo");
scanf("%s", calciatori[i].ruolo);
printf("inserisci squadra");
scanf("%s", calciatori[i].squadra);
}
printf("calciatori del Milan");
StampaMilan(calciatori[DIM]);
printf("calciatori che iniziano per C");
StampaC(calciatori[DIM]);
}