Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
1 - Using uninitialized memory <variable>.
This warning indicates that the specified variable was used without being initialized.
This warning is reported on all lines where the uninitialized variable is used.
Example
Defective Source
int i;
i++;
Corrected Source
int i = 0;
i++;
Send Feedback on this topic to the authors