영어로 읽는 코딩

26 [C] 초기화

 

초기화

 

Scalar variables may be initialized when they are defined, by following the name with an equals sign and an expression:

 

int x = 1;

char squote = ‘\’’;

long day = 1000L * 60L * 60L * 24L;       /* milliseconds/day */

 

For external and static variables, the initializer must be a constant expression; the initialization is done once, conceptually before the program begins execution. For automatic and register variables, it is done each time the function or block is entered.

 

An array may be initialized by following its declaration with a list of initializers enclosed in braces and separated by commas. For example, to initialize an array days with the number of days in each month:

 

int days[ ] = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };

 

When the size of the array is omitted, the compiler will compute the length by counting the initializers, of which there are 12 in this case.

 

If there are fewer initializers for an array than the number specified, the missing elements will be zero for external, static, and automatic variables. It is an error to have too many initializers. There is no way to specify repetition of an initializer, nor to initialize an element in the middle of an array without supplying all the preceding values as well.

 

Character arrays are a special case of initialization; a string may be used instead of the braces and commas notation:

 

char pattern [ ] = ”ould ” ;

 

is a shorthand for the longer but equivalent

 

char pattern [ ] = { ‘o', 'u', 'l', 'd’, '\0’ };

 

In this case, the array size is five (four characters plus the terminating ' \0 ').

 

 

[The C Programming Language p.85-86]

댓글

댓글 본문
버전 관리
Yoo Moon Il
현재 버전
선택 버전
graphittie 자세히 보기