summaryrefslogtreecommitdiffhomepage
path: root/c.html.markdown
diff options
context:
space:
mode:
authorRyan Rauschenberg <rprauschenberg@gmail.com>2016-03-22 11:15:26 -0400
committerRyan Rauschenberg <rprauschenberg@gmail.com>2016-03-22 11:15:26 -0400
commit7b78232897c00ebb781f28a21b96f1863c073ac8 (patch)
tree6f1543bdfe7b18de325e6e7b86e661eb27fcaee7 /c.html.markdown
parentd6b665f91c699779906c28482dcf4fcd51e83867 (diff)
issue 2205: Change variable 'size' to 'array_size'
Diffstat (limited to 'c.html.markdown')
-rw-r--r--c.html.markdown6
1 files changed, 3 insertions, 3 deletions
diff --git a/c.html.markdown b/c.html.markdown
index 7c9dd590..2fad5348 100644
--- a/c.html.markdown
+++ b/c.html.markdown
@@ -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
// time constant:
printf("Enter the array size: "); // ask the user for an array size
- int size;
- fscanf(stdin, "%d", &size);
- int var_length_array[size]; // declare the VLA
+ int array_size;
+ fscanf(stdin, "%d", &array_size);
+ int var_length_array[array_size]; // declare the VLA
printf("sizeof array = %zu\n", sizeof var_length_array);
// Example: