-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArrayOfStructures.c
42 lines (37 loc) · 924 Bytes
/
ArrayOfStructures.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
#include <stdio.h>
#include <string.h>
int main()
{
typedef struct pokemon{
int attack;
int speed;
int hp;
char tier;
char name[15];
}pokemon; // pokemon data type just like int !!
pokemon arr[3]; // like int arr[3]!!
arr[0].attack = 30;
arr[0].speed = 40;
arr[0].hp = 50;
arr[0].tier = 'A';
strcpy(arr[0].name,"pikachu : ");
arr[1].attack = 60;
arr[1].speed = 70;
arr[1].hp = 80;
arr[1].tier = 'B';
strcpy(arr[1].name,"raichu : ");
arr[2].attack = 90;
arr[2].speed = 100;
arr[2].hp =110;
arr[2].tier = 'C';
strcpy(arr[2].name,"mewtwo : ");
for(int i=0;i<3;i++){
printf("%s\n",arr[i].name);
printf("%c\n",arr[i].tier);
printf("%d\n",arr[i].attack);
printf("%d\n",arr[i].hp);
printf("%d\n",arr[i].speed);
printf("\n");
}
return 0;
}