Comment on Microsoft, please support (at least a tiny bit of) C99Comments−raldi14yWhat are "for loop initial decorations"?−mvzink14y for (int i = 0; i < n; i++) { ... } instead of int i; for (i = 0; i < n; i++) { ... }
Comments
What are "for loop initial decorations"?