Name: Anonymous 2009-02-06 6:23
int decVal = 26; // The number 26, in decimal
int octVal = 032; // The number 26, in octal
int hexVal = 0x1a; // The number 26, in hexadecimal
like is there any speed advantage in what you choose?
int octVal = 032; // The number 26, in octal
int hexVal = 0x1a; // The number 26, in hexadecimal
like is there any speed advantage in what you choose?