Hello. I know this is lame questinon but what is multi-if syntax? Like this:
if (a == 0)
doSometihng();
if (a == 1)
doSomething();
else
doElse();
Or like this:
if (a == 0)
doSometihng();
else if (a == 1)
doSomething();
else if (a == 2)
doSomething();
else
doElse();
I'm useing Microfot Visual C++ 08
Thank you :$