j
k
j a
j l
From: Robert Jones <robertgbjones@gmail.com> Can you not simply say this? int main() { if (get()) { // OK } else if (!get()) { // ERROR } return 0; }
From: Robert Jones <robertgbjones@gmail.com>
Can you not simply say this?
int main() { if (get()) { // OK
} else if (!get()) { // ERROR }
return 0; }
Or even better: int main() { if (get()) { // OK } else { // ERROR } return 0; } Laurent Dupuy.
Back to the thread
Back to the list