You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be awesome to have an option (the name could be BlankLineAfterDeclarationBlock) where in
intmain() {
inta;
intb;
printf("%d", a);
}
a newline is inserted between int b; and printf; (useful when we use C89 style/--Werror=declaration-after-statement and we want a newline between declarations/definitions)