I get the error when use the following declaration: ```c int a = 5; ``` but the following code works without errors ```c int a; a = 5; ```