You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the file about_arrays.c on line 81 the array int is allocated with 5 elements (defined on line 80), then in line 96 this array is reallocated again with 5 elements (with the same size variable), and then access to the 6th (on index 5) element of the array (of 5 elements) is undefined behavior
The text was updated successfully, but these errors were encountered:
In the file about_arrays.c on line 81 the array int is allocated with 5 elements (defined on line 80), then in line 96 this array is reallocated again with 5 elements (with the same size variable), and then access to the 6th (on index 5) element of the array (of 5 elements) is undefined behavior
The text was updated successfully, but these errors were encountered: