issue 2205: Change variable 'size' to 'array_size'

This commit is contained in:
Ryan Rauschenberg 2016-03-22 11:15:26 -04:00
parent d6b665f91c
commit 7b78232897

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: