Re(2): CriticalAlert
Re(2): CriticalAlert
- Subject: Re(2): CriticalAlert
- From: Jens Bauer <email@hidden>
- Date: Thu, 20 Dec 2001 20:58:02 +0100
Hi John,
>
#define is ==
>
#define or ||
>
#define and &&
Definately a good solution!
You could also change "is" to "equals" if you like that better:
if (mom equals superman)
I've used exchanging the parameters for many years:
if(4 == count)
{
...
}
-I also *always* put braces after if, while, for, etc:
if(12 == monkeys)
{
// DebugStr("\pYes.");
}
-And I never use "do", but place the while at the top, or use for, to avoid...
{
...
}while(true);
Love,
Jens