curly-brackets

Opening Curly Bracket (Brace) position on code

I'm used to write code (in C, Perl, or any language with curly brackets) like: Loops: for (int i = 0; i < 10; i++) { // <----- ... } Conditions: if (i == 10) { // <----- ... } Main: int main () { // <----- ... } Wherein I place the opening curly bracket right after the closing parenthesis. Yet, I see some templates ...