if (a == b)
{
And then in others you post on the same line
if (a == b) {
I prefer the method above. I try to leave a comment above anything major such as
// This determines ......
if (a == b) {
and of course an explanation above every function. If I have a nest IF/FOR/function statment I try to comment the ending }
// Main Function
void main() {
// The Dermines .....
if (a == b) {
code.....
} // End If
}
What standard do you guys use?


Sign In
Create Account


Back to top









