-
Notifications
You must be signed in to change notification settings - Fork 0
/
ex11.c
42 lines (28 loc) · 942 Bytes
/
ex11.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>
int main(int argc, char *argv[])
{
int numbers[4] = { 0 };
char name[4] = {'a'};
//먼저 초기화된 배열을 보여줌
printf("numbers: %d %d %d %d\n", numbers[0],numbers[1],numbers[2],numbers[3]);
printf("name each: %c %c %c %c\n", name[0],name[1],name[2],name[3]);
printf("name: %s\n", name);
//numbers 배열을 셋업한다.
numbers[0] = "a";
numbers[1] = "b";
numbers[2] = "c";
numbers[3] = "d";
//name 배열을 셋업한다.
name[0] = 'Z';
name[1] = 'e';
name[2] = 'd';
name[3] = '\0';
//그다음에 셋업된 배열의 내용을 출력한다.
printf("numbers: %d %d %d %d\n", numbers[0],numbers[1],numbers[2],numbers[3]);
printf("name each: %c %c %c %c\n", name[0],name[1],name[2],name[3]);
printf("name: %s\n", name);
char *another ="Zed";
printf("another: %s\n", another);
printf("another: %c %c %c %c\n", another[0],another[1],another[2],another[3]);
return 0;
}