Should I use && and || operators at the end of a line or beginning? [Answered]
if (a
c)
{
}
vs.
if (a
c)
{
}
Which is the more accepted standard? I just want to stop questioning myself every time I encounter this. Thanks.
c)
{
}
vs.
if (a
c)
{
}
Which is the more accepted standard? I just want to stop questioning myself every time I encounter this. Thanks.