#63·c4

Bad local declaration

Author: tigertvCreated Jan 9, 2021Updated Jan 9, 2021

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;