diff options
author | ven <vendethiel@hotmail.fr> | 2015-10-28 20:28:22 +0100 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2015-10-28 20:28:22 +0100 |
commit | cbc2daa58d85a0729b898774ff8030f9268a303d (patch) | |
tree | e2057beed894eddc38d1aa62f3bf91d67f21a807 /c.html.markdown | |
parent | 80242383bc38edac9e0e44a32c1f8f794a01017d (diff) | |
parent | b31fda3a8e9f4d0ff021dc707f1e47af4add90ac (diff) |
Merge pull request #1848 from jodizzle/fix/c
[C/en] Fix VLA example
Diffstat (limited to 'c.html.markdown')
-rw-r--r-- | c.html.markdown | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/c.html.markdown b/c.html.markdown index 3d632eab..7c2386ef 100644 --- a/c.html.markdown +++ b/c.html.markdown @@ -148,15 +148,10 @@ int main (int argc, char** argv) printf("Enter the array size: "); // ask the user for an array size int size; fscanf(stdin, "%d", &size); - char buf[size]; - fgets(buf, sizeof buf, stdin); - - // strtoul parses a string to an unsigned integer - size_t size2 = strtoul(buf, NULL, 10); - int var_length_array[size2]; // declare the VLA + int var_length_array[size]; // declare the VLA printf("sizeof array = %zu\n", sizeof var_length_array); - // A possible outcome of this program may be: + // Example: // > Enter the array size: 10 // > sizeof array = 40 |