<html><head><meta http-equiv="content-type" content="text/html; charset=utf-8"></head><body dir="auto">> <span style="font-size: 16px; -webkit-text-size-adjust: auto; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0); font-family: Calibri, Arial, Helvetica, sans-serif; background-color: rgb(28, 28, 30);">I'll see what gcc complier options I should use to detect the use of declared variables that are not initialized</span><div><br></div><div><br></div><div>The flag you are looking for is -Wall. Please fix all the warnings that it may raise.</div><div><br></div><div>Generally speaking, it is also much easier to ensure your variables are initialized if you restrict them to the smallest scope possible. That is, declare the variable immediately before you use it. If you only use it within a loop,  then only declare it inside that loop. If you only use it in an if branch, then only declare it inside that branch.</div><div><br><div dir="ltr"><span style="background-color: rgba(255, 255, 255, 0);">Best regards,<br class=""><br class="">Jacob Faibussowitsch<br class="">(Jacob Fai - booss - oh - vitch)</span></div><div dir="ltr"><br><blockquote type="cite">On May 10, 2023, at 12:38, Tu, Jiannan <Jiannan_Tu@uml.edu> wrote:<br><br></blockquote></div><blockquote type="cite"><div dir="ltr">I'll see what gcc complier options I should use to detect the use of
 declared variables that are not initialized</div></blockquote></div></body></html>