Earlier quoted context omitted.
C is declare anywhere and has been for a looong time (C99).
sorry, my bad, i don't do any c programming these days. but to be pedantic, i think you mean define rather than declare, though of course you can also declare things at different scopes.
int x;
f();
x=3;
The improvement was allowing declarations anywhere.