1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-17 12:10:52 +02:00

Merge pull request #2206 from ryebr3ad/master

[c/en] issue 2205: Change variable 'size' to 'array_size'
This commit is contained in:
ven
2016-03-22 16:23:05 +01:00

View File

@@ -143,9 +143,9 @@ int main (int argc, char** argv)
// can be declared as well. The size of such an array need not be a compile // can be declared as well. The size of such an array need not be a compile
// time constant: // time constant:
printf("Enter the array size: "); // ask the user for an array size printf("Enter the array size: "); // ask the user for an array size
int size; int array_size;
fscanf(stdin, "%d", &size); fscanf(stdin, "%d", &array_size);
int var_length_array[size]; // declare the VLA int var_length_array[array_size]; // declare the VLA
printf("sizeof array = %zu\n", sizeof var_length_array); printf("sizeof array = %zu\n", sizeof var_length_array);
// Example: // Example: