Difference between revisions of "c/language/array"
m (edit example per suggestions) |
|||
(29 intermediate revisions by 14 users not shown) | |||
Line 9: | Line 9: | ||
{{sdsc begin}} | {{sdsc begin}} | ||
− | {{sdsc |num=1| {{ttb|[}} {{ttb|static}}{{mark optional}} {{spar|qualifiers}}{{ | + | {{sdsc|num=1|{{ttb|[}} {{ttb|static}}{{mark optional}} {{spar optional|qualifiers}} {{spar optional|expression}} {{ttb|]}} {{spar optional|attr-spec-seq}}}} |
− | {{sdsc |num=2| {{ttb|[}} {{spar|qualifiers | + | {{sdsc|num=2|{{ttb|[}} {{spar optional|qualifiers}} {{ttb|static}}{{mark optional}} {{spar optional|expression}} {{ttb|]}} {{spar optional|attr-spec-seq}}}} |
− | {{sdsc |num=3| {{ttb|[}} {{spar|qualifiers}}{{ | + | {{sdsc|num=3|{{ttb|[}} {{spar optional|qualifiers}} {{ttb|*}} {{ttb|]}} {{spar optional|attr-spec-seq}}}} |
{{sdsc end}} | {{sdsc end}} | ||
@1,2@ General array declarator syntax | @1,2@ General array declarator syntax | ||
Line 18: | Line 18: | ||
{{par begin}} | {{par begin}} | ||
− | {{par | {{spar|expression}} | any expression other than {{ | + | {{par|{{spar|expression}}|any expression other than {{rlpsd|operator other#Comma operator}}, designates the number of elements in the array}} |
− | {{par | {{spar|qualifiers}} | any combination of {{ | + | {{par|{{spar|qualifiers}}|any combination of {{rlpt|const}}, {{rlpt|restrict}}, or {{rlpt|volatile}} qualifiers, only allowed in function parameter lists; this qualifies the pointer type to which this array parameter is transformed}} |
+ | {{par|{{spar|attr-spec-seq}}|{{mark c23}}optional list of {{rlp|attributes}}, applied to the declared array}} | ||
{{par end}} | {{par end}} | ||
Line 31: | Line 32: | ||
====Arrays of constant known size==== | ====Arrays of constant known size==== | ||
− | If {{spar|expression}} in an array declarator is an {{ | + | If {{spar|expression}} in an array declarator is an {{rlpsd|constant expression#Integer constant expression}} with a value greater than zero {{rev inl|since=c99|and the element type is a type with a known constant size (that is, elements are not VLA)}}, then the declarator declares an array of constant known size: |
{{source|1= | {{source|1= | ||
int n[10]; // integer constants are constant expressions | int n[10]; // integer constants are constant expressions | ||
Line 41: | Line 42: | ||
Arrays of constant known size can use {{rlp|array initialization|array initializers}} to provide their initial values: | Arrays of constant known size can use {{rlp|array initialization|array initializers}} to provide their initial values: | ||
{{source|1= | {{source|1= | ||
− | int a[5] = {1,2,3}; // declares int[5] | + | int a[5] = {1,2,3}; // declares int[5] initialized to 1,2,3,0,0 |
char str[] = "abc"; // declares char[4] initialized to 'a','b','c','\0' | char str[] = "abc"; // declares char[4] initialized to 'a','b','c','\0' | ||
}} | }} | ||
Line 49: | Line 50: | ||
In function parameter lists, additional syntax elements are allowed within the array declarators: the keyword {{ttb|static}} and {{spar|qualifiers}}, which may appear in any order before the size expression (they may also appear even when the size expression is omitted). | In function parameter lists, additional syntax elements are allowed within the array declarators: the keyword {{ttb|static}} and {{spar|qualifiers}}, which may appear in any order before the size expression (they may also appear even when the size expression is omitted). | ||
− | In each {{ | + | In each {{rlpsd|operator other#Function call}} to a function where an array parameter uses the keyword {{ttb|static}} between {{ttb|[}} and {{ttb|]}}, the value of the actual parameter must be a valid pointer to the first element of an array with at least as many elements as specified by {{spar|expression}}: |
{{source|1= | {{source|1= | ||
void fadd(double a[static 10], const double b[static 10]) | void fadd(double a[static 10], const double b[static 10]) | ||
− | { | + | { |
− | for (int i = 0; i < 10; i++) { | + | for (int i = 0; i < 10; i++) |
+ | { | ||
if (a[i] < 0.0) return; | if (a[i] < 0.0) return; | ||
a[i] += b[i]; | a[i] += b[i]; | ||
} | } | ||
} | } | ||
− | // a call to fadd | + | // a call to fadd may perform compile-time bounds checking |
− | // and also permits optimizations such as prefetching 10 doubles | + | // and also permits optimizations such as prefetching 10 doubles |
int main(void) | int main(void) | ||
{ | { | ||
Line 65: | Line 67: | ||
fadd(a, b); // OK | fadd(a, b); // OK | ||
double x[5] = {0}; | double x[5] = {0}; | ||
− | fadd(x, b); // | + | fadd(x, b); // undefined behavior: array argument is too small |
} | } | ||
}} | }} | ||
Line 73: | Line 75: | ||
int f(const int a[20]) | int f(const int a[20]) | ||
{ | { | ||
− | + | // in this function, a has type const int* (pointer to const int) | |
} | } | ||
int g(const int a[const 20]) | int g(const int a[const 20]) | ||
{ | { | ||
− | + | // in this function, a has type const int* const (const pointer to const int) | |
} | } | ||
}} | }} | ||
− | This is commonly used with the {{ | + | This is commonly used with the {{rlpt|restrict}} type qualifier: |
{{source|1= | {{source|1= | ||
void fadd(double a[static restrict 10], | void fadd(double a[static restrict 10], | ||
const double b[static restrict 10]) | const double b[static restrict 10]) | ||
{ | { | ||
− | for (int i = 0; i < 10; i++) | + | for (int i = 0; i < 10; i++) // loop can be unrolled and reordered |
− | if (a[i] < 0.0) break; | + | { |
+ | if (a[i] < 0.0) | ||
+ | break; | ||
a[i] += b[i]; | a[i] += b[i]; | ||
} | } | ||
Line 93: | Line 97: | ||
====Variable-length arrays==== | ====Variable-length arrays==== | ||
− | If {{spar|expression}} is not an {{ | + | If {{spar|expression}} is not an {{rlpsd|constant expression#Integer constant expression}}, the declarator is for an array of variable size. |
Each time the flow of control passes over the declaration, {{spar|expression}} is evaluated (and it must always evaluate to a value greater than zero), and the array is allocated (correspondingly, {{rlp|lifetime}} of a VLA ends when the declaration goes out of scope). The size of each VLA instance does not change during its lifetime, but on another pass over the same code, it may be allocated with a different size. | Each time the flow of control passes over the declaration, {{spar|expression}} is evaluated (and it must always evaluate to a value greater than zero), and the array is allocated (correspondingly, {{rlp|lifetime}} of a VLA ends when the declaration goes out of scope). The size of each VLA instance does not change during its lifetime, but on another pass over the same code, it may be allocated with a different size. | ||
− | {{ | + | {{example|code= |
+ | #include <stdio.h> | ||
+ | |||
+ | int main(void) | ||
{ | { | ||
int n = 1; | int n = 1; | ||
Line 102: | Line 109: | ||
int a[n]; // re-allocated 10 times, each with a different size | int a[n]; // re-allocated 10 times, each with a different size | ||
printf("The array has %zu elements\n", sizeof a / sizeof *a); | printf("The array has %zu elements\n", sizeof a / sizeof *a); | ||
− | if (n++ < 10) goto label; // leaving the scope of a VLA ends its lifetime | + | if (n++ < 10) |
+ | goto label; // leaving the scope of a VLA ends its lifetime | ||
} | } | ||
}} | }} | ||
Line 110: | Line 118: | ||
{{source|1= | {{source|1= | ||
void foo(size_t x, int a[*]); | void foo(size_t x, int a[*]); | ||
− | void foo(size_t x, int a[x]) | + | void foo(size_t x, int a[x]) |
{ | { | ||
− | printf("% | + | printf("%zu\n", sizeof a); // same as sizeof(int*) |
} | } | ||
}} | }} | ||
Line 123: | Line 131: | ||
int B[100]; // OK: file-scope array of constant known size | int B[100]; // OK: file-scope array of constant known size | ||
void fvla(int m, int C[m][m]); // OK: prototype-scope VLA | void fvla(int m, int C[m][m]); // OK: prototype-scope VLA | ||
− | |||
}} | }} | ||
− | VLA must have automatic storage duration. Pointers to VLA, but not VLA themselves may also have static storage duration. No VM type may have linkage. | + | VLA must have automatic or allocated storage duration. Pointers to VLA, but not VLA themselves may also have static storage duration. No VM type may have linkage. |
{{source|1= | {{source|1= | ||
void fvla(int m, int C[m][m]) // OK: block scope/auto duration pointer to VLA | void fvla(int m, int C[m][m]) // OK: block scope/auto duration pointer to VLA | ||
Line 135: | Line 142: | ||
// extern int F[m]; // Error: VLA with linkage | // extern int F[m]; // Error: VLA with linkage | ||
int (*s)[m]; // OK: block scope/auto duration VM | int (*s)[m]; // OK: block scope/auto duration VM | ||
+ | s = malloc(m * sizeof(int)); // OK: s points to VLA in allocated storage | ||
// extern int (*r)[m]; // Error: VM with linkage | // extern int (*r)[m]; // Error: VM with linkage | ||
static int (*q)[m] = &B; // OK: block scope/static duration VM} | static int (*q)[m] = &B; // OK: block scope/static duration VM} | ||
Line 142: | Line 150: | ||
Variably-modified types cannot be members of structs or unions. | Variably-modified types cannot be members of structs or unions. | ||
{{source|1= | {{source|1= | ||
− | struct tag { | + | struct tag |
− | int z[n]; // | + | { |
+ | int z[n]; // Error: VLA struct member | ||
int (*y)[n]; // Error: VM struct member | int (*y)[n]; // Error: VM struct member | ||
}; | }; | ||
Line 149: | Line 158: | ||
}} | }} | ||
− | {{rev|since=c11| | + | {{rev|since=c11|until=c23| |
If the compiler defines the macro constant {{c|__STDC_NO_VLA__}} to integer constant {{c|1}}, then VLA and VM types are not supported. | If the compiler defines the macro constant {{c|__STDC_NO_VLA__}} to integer constant {{c|1}}, then VLA and VM types are not supported. | ||
+ | }} | ||
+ | {{rev|since=c23| | ||
+ | If the compiler defines the macro constant {{c|__STDC_NO_VLA__}} to integer constant {{c|1}}, then VLA objects with automatic storage duration are not supported. | ||
+ | |||
+ | The support for VM types and VLAs with allocated storage durations is mandated. | ||
}} | }} | ||
{{rev end}} | {{rev end}} | ||
====Arrays of unknown size==== | ====Arrays of unknown size==== | ||
− | If {{spar|expression}} in an array declarator is omitted, it declares an array of unknown size. Except in function parameter lists (where such arrays are transformed to pointers) and when an {{rlp|array initialization|initializer}} is available, such type is an {{rlp|type# | + | If {{spar|expression}} in an array declarator is omitted, it declares an array of unknown size. Except in function parameter lists (where such arrays are transformed to pointers) and when an {{rlp|array initialization|initializer}} is available, such type is an {{rlp|type#Incomplete types|incomplete type}}{{rev inl|since=c99| (note that VLA of unspecified size, declared with {{ttb|*}} as the size, is a complete type)}}: |
{{source|1= | {{source|1= | ||
extern int x[]; // the type of x is "array of unknown bound of int" | extern int x[]; // the type of x is "array of unknown bound of int" | ||
Line 161: | Line 175: | ||
}} | }} | ||
− | {{ | + | {{rrev|since=c99| |
− | + | ||
Within a {{rlp|struct}} definition, an array of unknown size may appear as the last member (as long as there is at least one other named member), in which case it is a special case known as ''flexible array member''. See {{rlp|struct}} for details: | Within a {{rlp|struct}} definition, an array of unknown size may appear as the last member (as long as there is at least one other named member), in which case it is a special case known as ''flexible array member''. See {{rlp|struct}} for details: | ||
{{source|1= | {{source|1= | ||
− | struct s { int n; double d[]; }; // s.d is a flexible array member | + | struct s { int n; double d[]; }; // s.d is a flexible array member |
− | struct s *s1 = malloc(sizeof (struct s) + | + | struct s *s1 = malloc(sizeof (struct s) + (sizeof (double) * 8)); // as if d was double d[8] |
}} | }} | ||
}} | }} | ||
− | + | ||
− | ===Qualifiers=== | + | ====Qualifiers==== |
− | If an array type is declared with a {{ | + | {{rrev multi|rev1= |
+ | If an array type is declared with a {{rlpt|const}}, {{rlpt|volatile}}{{rev inl|since=c99|, or {{rlpt|restrict}}}} qualifier (which is possible through the use of {{rlp|typedef}}), the array type is not qualified, but its element type is: | ||
+ | |since2=c23|rev2= | ||
+ | An array type and its element type are always considered to be identically qualified, except that an array type is never considered to be {{rlpt|atomic|_Atomic}}-qualified. | ||
+ | }} | ||
{{source|1= | {{source|1= | ||
typedef int A[2][3]; | typedef int A[2][3]; | ||
− | const A a = {{4, 5, 6}, {7, 8, 9}}; // array of array of const int | + | const A a = {<!---->{4, 5, 6}, {7, 8, 9}<!---->}; // array of array of const int |
int* pi = a[0]; // Error: a[0] has type const int* | int* pi = a[0]; // Error: a[0] has type const int* | ||
+ | void* unqual_ptr = a; // OK until C23; error since C23 | ||
+ | // Notes: clang applies the rule in C++/C23 even in C89-C17 modes | ||
+ | }} | ||
+ | {{rrev|since=c11| | ||
+ | {{rlpt|atomic|_Atomic}} is not allowed to be applied to an array type, although an array of atomic type is allowed. | ||
+ | {{source|1= | ||
+ | typedef int A[2]; | ||
+ | // _Atomic A a0 = {0}; // Error | ||
+ | // _Atomic(A) a1 = {0}; // Error | ||
+ | _Atomic int a2[2] = {0}; // OK | ||
+ | _Atomic(int) a3[2] = {0}; // OK | ||
+ | }} | ||
}} | }} | ||
Line 191: | Line 220: | ||
====Array to pointer conversion==== | ====Array to pointer conversion==== | ||
− | Any {{rlp|value category|lvalue expression}} of array type, when used in any context other than | + | Any {{rlp|value category|lvalue expression}} of array type, when used in any context other than |
* as the operand of the {{rlp|operator_member_access|address-of operator}} | * as the operand of the {{rlp|operator_member_access|address-of operator}} | ||
− | * as the operand of {{ | + | * as the operand of {{rlpt|sizeof}} |
− | * as the string literal used for {{rlp|array initialization}} | + | * as the operand of {{rlpt|typeof}} and {{rlpt|typeof_unqual}} {{mark since c23}} |
+ | * as the string literal used for {{rlp|array initialization}} | ||
− | {{ | + | {{rrev|since=c11| |
− | + | * as the operand of {{rlpt|_Alignof}} | |
− | * as the operand of {{ | + | |
}} | }} | ||
− | |||
undergoes an {{rlp|conversion|implicit conversion}} to the pointer to its first element. The result is not an lvalue. | undergoes an {{rlp|conversion|implicit conversion}} to the pointer to its first element. The result is not an lvalue. | ||
− | If the array was declared {{ | + | If the array was declared {{rlpt|storage duration|register}}, the behavior of the program that attempts such conversion is undefined. |
{{source|1= | {{source|1= | ||
Line 214: | Line 242: | ||
When an array type is used in a function parameter list, it is transformed to the corresponding pointer type: {{c|int f(int a[2])}} and {{c|int f(int* a)}} declare the same function. Since the function's actual parameter type is pointer type, a function call with an array argument performs array-to-pointer conversion; the size of the argument array is not available to the called function and must be passed explicitly: | When an array type is used in a function parameter list, it is transformed to the corresponding pointer type: {{c|int f(int a[2])}} and {{c|int f(int* a)}} declare the same function. Since the function's actual parameter type is pointer type, a function call with an array argument performs array-to-pointer conversion; the size of the argument array is not available to the called function and must be passed explicitly: | ||
− | {{ | + | {{example|code= |
− | void f(int a[], int sz) // actually declares | + | #include <stdio.h> |
+ | |||
+ | void f(int a[], int sz) // actually declares void f(int* a, int sz) | ||
{ | { | ||
− | for(int i = 0; i < sz; ++i) | + | for (int i = 0; i < sz; ++i) |
− | + | printf("%d\n", a[i]); | |
} | } | ||
+ | |||
+ | void g(int (*a)[10]) // pointer to array parameter is not transformed | ||
+ | { | ||
+ | for (int i = 0; i < 10; ++i) | ||
+ | printf("%d\n", (*a)[i]); | ||
+ | } | ||
+ | |||
int main(void) | int main(void) | ||
{ | { | ||
− | int a[10]; | + | int a[10] = {0}; |
f(a, 10); // converts a to int*, passes the pointer | f(a, 10); // converts a to int*, passes the pointer | ||
+ | g(&a); // passes a pointer to the array (no need to pass the size) | ||
} | } | ||
}} | }} | ||
Line 230: | Line 268: | ||
When the element type of an array is another array, it is said that the array is multidimensional: | When the element type of an array is another array, it is said that the array is multidimensional: | ||
{{source|1=// array of 2 arrays of 3 ints each | {{source|1=// array of 2 arrays of 3 ints each | ||
− | int a[2][3] = {{1,2,3}, // can be viewed as a 2x3 matrix | + | int a[2][3] = {<!---->{1,2,3}, // can be viewed as a 2x3 matrix |
− | {4,5,6}}; // with row-major layout | + | {4,5,6}<!---->}; // with row-major layout |
}} | }} | ||
Line 240: | Line 278: | ||
int (*p1)[3] = a; // pointer to the first 3-element row | int (*p1)[3] = a; // pointer to the first 3-element row | ||
int b[3][3][3]; // 3x3x3 cube | int b[3][3][3]; // 3x3x3 cube | ||
− | int (*p2)[3][3] = | + | int (*p2)[3][3] = b; // pointer to the first 3x3 plane |
}} | }} | ||
− | {{ | + | {{rrev|since=c99| |
− | + | Multidimensional arrays may be variably modified in every dimension{{rev inl|since=c11| if VLAs are supported}}: | |
− | Multidimensional arrays may be variably modified in every dimension: | + | |
{{source|1= | {{source|1= | ||
int n = 10; | int n = 10; | ||
Line 251: | Line 288: | ||
}} | }} | ||
}} | }} | ||
− | |||
===Notes=== | ===Notes=== | ||
Line 258: | Line 294: | ||
If the size {{spar|expression}} of a VLA has side effects, they are guaranteed to be produced except when it is a part of a sizeof expression whose result doesn't depend on it: | If the size {{spar|expression}} of a VLA has side effects, they are guaranteed to be produced except when it is a part of a sizeof expression whose result doesn't depend on it: | ||
{{source|1= | {{source|1= | ||
− | int n = 5 | + | int n = 5, m = 5; |
− | + | size_t sz = sizeof(int (*[n++])[m++]); // n is incremented, m may or may not be incremented | |
− | size_t sz = sizeof(int (* | + | |
}} | }} | ||
===References=== | ===References=== | ||
+ | {{ref std c23}} | ||
+ | {{ref std|section=6.7.6.2|title=Array declarators|p=TBD}} | ||
+ | {{ref std end}} | ||
+ | {{ref std c17}} | ||
+ | {{ref std|section=6.7.6.2|title=Array declarators|p=94-96}} | ||
+ | {{ref std end}} | ||
{{ref std c11}} | {{ref std c11}} | ||
− | {{ref std | section=6.7.6.2 | title=Array declarators | p=130-132}} | + | {{ref std|section=6.7.6.2|title=Array declarators|p=130-132}} |
+ | {{ref std end}} | ||
{{ref std c99}} | {{ref std c99}} | ||
− | {{ref std | section=6.7.5.2 | title=Array declarators | p=116-118}} | + | {{ref std|section=6.7.5.2|title=Array declarators|p=116-118}} |
+ | {{ref std end}} | ||
{{ref std c89}} | {{ref std c89}} | ||
− | {{ref std | section=3.5.4.2 | title=Array declarators}} | + | {{ref std|section=3.5.4.2|title=Array declarators}} |
{{ref std end}} | {{ref std end}} | ||
===See also=== | ===See also=== | ||
{{dsc begin}} | {{dsc begin}} | ||
− | {{dsc see cpp | cpp/language/array | Array declaration}} | + | {{dsc see cpp|cpp/language/array|Array declaration|nomono=true}} |
{{dsc end}} | {{dsc end}} | ||
− | + | {{langlinks|ar|cs|de|es|fr|it|ja|ko|pl|pt|ru|tr|zh}} | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + |
Latest revision as of 16:08, 16 January 2024
Array is a type consisting of a contiguously allocated nonempty sequence of objects with a particular element type. The number of those objects (the array size) never changes during the array lifetime.
Contents |
[edit] Syntax
In the declaration grammar of an array declaration, the type-specifier sequence designates the element type (which must be a complete object type), and the declarator has the form:
[ static (optional) qualifiers (optional) expression (optional) ] attr-spec-seq (optional)
|
(1) | ||||||||
[ qualifiers (optional) static (optional) expression (optional) ] attr-spec-seq (optional)
|
(2) | ||||||||
[ qualifiers (optional) * ] attr-spec-seq (optional)
|
(3) | ||||||||
expression | - | any expression other than comma operator, designates the number of elements in the array |
qualifiers | - | any combination of const , restrict , or volatile qualifiers, only allowed in function parameter lists; this qualifies the pointer type to which this array parameter is transformed
|
attr-spec-seq | - | (C23)optional list of attributes, applied to the declared array |
float fa[11], *afp[17]; // fa is an array of 11 floats // afp is an array of 17 pointers to floats
[edit] Explanation
There are several variations of array types: arrays of known constant size, variable-length arrays, and arrays of unknown size.
[edit] Arrays of constant known size
If expression in an array declarator is an integer constant expression with a value greater than zero and the element type is a type with a known constant size (that is, elements are not VLA)(since C99), then the declarator declares an array of constant known size:
int n[10]; // integer constants are constant expressions char o[sizeof(double)]; // sizeof is a constant expression enum { MAX_SZ=100 }; int n[MAX_SZ]; // enum constants are constant expressions
Arrays of constant known size can use array initializers to provide their initial values:
int a[5] = {1,2,3}; // declares int[5] initialized to 1,2,3,0,0 char str[] = "abc"; // declares char[4] initialized to 'a','b','c','\0'
In function parameter lists, additional syntax elements are allowed within the array declarators: the keyword In each function call to a function where an array parameter uses the keyword void fadd(double a[static 10], const double b[static 10]) { for (int i = 0; i < 10; i++) { if (a[i] < 0.0) return; a[i] += b[i]; } } // a call to fadd may perform compile-time bounds checking // and also permits optimizations such as prefetching 10 doubles int main(void) { double a[10] = {0}, b[20] = {0}; fadd(a, b); // OK double x[5] = {0}; fadd(x, b); // undefined behavior: array argument is too small } If qualifiers are present, they qualify the pointer type to which the array parameter type is transformed: int f(const int a[20]) { // in this function, a has type const int* (pointer to const int) } int g(const int a[const 20]) { // in this function, a has type const int* const (const pointer to const int) } This is commonly used with the void fadd(double a[static restrict 10], const double b[static restrict 10]) { for (int i = 0; i < 10; i++) // loop can be unrolled and reordered { if (a[i] < 0.0) break; a[i] += b[i]; } } Variable-length arraysIf expression is not an integer constant expression, the declarator is for an array of variable size. Each time the flow of control passes over the declaration, expression is evaluated (and it must always evaluate to a value greater than zero), and the array is allocated (correspondingly, lifetime of a VLA ends when the declaration goes out of scope). The size of each VLA instance does not change during its lifetime, but on another pass over the same code, it may be allocated with a different size. Run this code #include <stdio.h> int main(void) { int n = 1; label:; int a[n]; // re-allocated 10 times, each with a different size printf("The array has %zu elements\n", sizeof a / sizeof *a); if (n++ < 10) goto label; // leaving the scope of a VLA ends its lifetime } If the size is Variable-length arrays and the types derived from them (pointers to them, etc) are commonly known as "variably-modified types" (VM). Objects of any variably-modified type may only be declared at block scope or function prototype scope. extern int n; int A[n]; // Error: file scope VLA extern int (*p2)[n]; // Error: file scope VM int B[100]; // OK: file-scope array of constant known size void fvla(int m, int C[m][m]); // OK: prototype-scope VLA VLA must have automatic or allocated storage duration. Pointers to VLA, but not VLA themselves may also have static storage duration. No VM type may have linkage. void fvla(int m, int C[m][m]) // OK: block scope/auto duration pointer to VLA { typedef int VLA[m][m]; // OK: block scope VLA int D[m]; // OK: block scope/auto duration VLA // static int E[m]; // Error: static duration VLA // extern int F[m]; // Error: VLA with linkage int (*s)[m]; // OK: block scope/auto duration VM s = malloc(m * sizeof(int)); // OK: s points to VLA in allocated storage // extern int (*r)[m]; // Error: VM with linkage static int (*q)[m] = &B; // OK: block scope/static duration VM} } Variably-modified types cannot be members of structs or unions. struct tag { int z[n]; // Error: VLA struct member int (*y)[n]; // Error: VM struct member }; |
(since C99) |
If the compiler defines the macro constant __STDC_NO_VLA__ to integer constant 1, then VLA and VM types are not supported. |
(since C11) (until C23) |
If the compiler defines the macro constant __STDC_NO_VLA__ to integer constant 1, then VLA objects with automatic storage duration are not supported. The support for VM types and VLAs with allocated storage durations is mandated. |
(since C23) |
[edit] Arrays of unknown size
If expression in an array declarator is omitted, it declares an array of unknown size. Except in function parameter lists (where such arrays are transformed to pointers) and when an initializer is available, such type is an incomplete type (note that VLA of unspecified size, declared with *
as the size, is a complete type)(since C99):
extern int x[]; // the type of x is "array of unknown bound of int" int a[] = {1,2,3}; // the type of a is "array of 3 int"
Within a struct definition, an array of unknown size may appear as the last member (as long as there is at least one other named member), in which case it is a special case known as flexible array member. See struct for details: struct s { int n; double d[]; }; // s.d is a flexible array member struct s *s1 = malloc(sizeof (struct s) + (sizeof (double) * 8)); // as if d was double d[8]
|
(since C99) |
[edit] Qualifiers
If an array type is declared with a |
(until C23) |
An array type and its element type are always considered to be identically qualified, except that an array type is never considered to be |
(since C23) |
typedef int A[2][3]; const A a = {{4, 5, 6}, {7, 8, 9}}; // array of array of const int int* pi = a[0]; // Error: a[0] has type const int* void* unqual_ptr = a; // OK until C23; error since C23 // Notes: clang applies the rule in C++/C23 even in C89-C17 modes
typedef int A[2]; // _Atomic A a0 = {0}; // Error // _Atomic(A) a1 = {0}; // Error _Atomic int a2[2] = {0}; // OK _Atomic(int) a3[2] = {0}; // OK |
(since C11) |
[edit] Assignment
Objects of array type are not modifiable lvalues, and although their address may be taken, they cannot appear on the left hand side of an assignment operator. However, structs with array members are modifiable lvalues and can be assigned:
int a[3] = {1,2,3}, b[3] = {4,5,6}; int (*p)[3] = &a; // okay, address of a can be taken // a = b; // error, a is an array struct { int c[3]; } s1, s2 = {3,4,5}; s1 = s2; // okay: can assign structs holding array members
[edit] Array to pointer conversion
Any lvalue expression of array type, when used in any context other than
- as the operand of the address-of operator
- as the operand of
sizeof
- as the operand of
typeof
andtypeof_unqual
(since C23) - as the string literal used for array initialization
|
(since C11) |
undergoes an implicit conversion to the pointer to its first element. The result is not an lvalue.
If the array was declared register
, the behavior of the program that attempts such conversion is undefined.
When an array type is used in a function parameter list, it is transformed to the corresponding pointer type: int f(int a[2]) and int f(int* a) declare the same function. Since the function's actual parameter type is pointer type, a function call with an array argument performs array-to-pointer conversion; the size of the argument array is not available to the called function and must be passed explicitly:
#include <stdio.h> void f(int a[], int sz) // actually declares void f(int* a, int sz) { for (int i = 0; i < sz; ++i) printf("%d\n", a[i]); } void g(int (*a)[10]) // pointer to array parameter is not transformed { for (int i = 0; i < 10; ++i) printf("%d\n", (*a)[i]); } int main(void) { int a[10] = {0}; f(a, 10); // converts a to int*, passes the pointer g(&a); // passes a pointer to the array (no need to pass the size) }
[edit] Multidimensional arrays
When the element type of an array is another array, it is said that the array is multidimensional:
// array of 2 arrays of 3 ints each int a[2][3] = {{1,2,3}, // can be viewed as a 2x3 matrix {4,5,6}}; // with row-major layout
Note that when array-to-pointer conversion is applied, a multidimensional array is converted to a pointer to its first element, e.g., pointer to the first row:
int a[2][3]; // 2x3 matrix int (*p1)[3] = a; // pointer to the first 3-element row int b[3][3][3]; // 3x3x3 cube int (*p2)[3][3] = b; // pointer to the first 3x3 plane
Multidimensional arrays may be variably modified in every dimension if VLAs are supported(since C11): int n = 10; int a[n][2*n]; |
(since C99) |
[edit] Notes
Zero-length array declarations are not allowed, even though some compilers offer them as extensions (typically as a pre-C99 implementation of flexible array members).
If the size expression of a VLA has side effects, they are guaranteed to be produced except when it is a part of a sizeof expression whose result doesn't depend on it:
int n = 5, m = 5; size_t sz = sizeof(int (*[n++])[m++]); // n is incremented, m may or may not be incremented
[edit] References
- C23 standard (ISO/IEC 9899:2024):
- 6.7.6.2 Array declarators (p: TBD)
- C17 standard (ISO/IEC 9899:2018):
- 6.7.6.2 Array declarators (p: 94-96)
- C11 standard (ISO/IEC 9899:2011):
- 6.7.6.2 Array declarators (p: 130-132)
- C99 standard (ISO/IEC 9899:1999):
- 6.7.5.2 Array declarators (p: 116-118)
- C89/C90 standard (ISO/IEC 9899:1990):
- 3.5.4.2 Array declarators
[edit] See also
C++ documentation for Array declaration
|