Questions tagged [ident]
31 questions
-5
votes
1 answer
which is the best practice to write keys in any language?
which is the best practice?:
if(1){
demo();
}
Or
if(1)
{
demo();
}
And parentesis:
if(1)
Or
if( 1 )
And that one way is better than another?. There are some standard about it?

e-info128
- 3,727
- 10
- 40
- 57