>For C and C++ stuff, for portable code, or if you want it free: gcc
There is this conditional statement in C (or C++) that let's you do something like:
(VGAInfo.x>640)?(VGAInfo.SVGA=1):(VGAInfo.SVGA=0);
Is this standard C (works with any c compiler) and does it allow for multiple statements in the conditional?
I'm familiar with Borland C which has a lot of stuff which is nonstandard.