1
edit
Changes
m
→(Discussion: Nesting): Added my opinion on nesting
}
else {
printf(",");
}
Mddaniels example: This is how I was taught in IPC144 by Murray Saul
if (a > 0)
{
printf(".");
}
else
{
printf(",");
}
| Mziaei1 || Agree with option 2.
|-
| Mddaniels || I agree with option 2. Although I am used to coding my braces on seperate lines, see my small example above.
|}