The compiler says may be used uninitialized in this function.
you have two functions. "function_name_1" initializes "var_name". "function_name_2" uses "var_name". What happens if you call "function_name_2" before you call "function_name_1"? - BINGO, you'd use an uninitialized variable, as the compiler said...
Bookmarks