Jump to content

Recommended Posts

Posted
*nix (UNIX and related) shells, and likewise the C programming language, which was designed for UNIX (and the syntactical descendants of C[2]) use the prefix 0x for numeric constants represented in hex:

 

Wiki

 

looks like to denote the following number is hex

 

hope this helps

Posted

It's a prefix to indicate the number is in hexadecimal rather than in some other base. The C programming language uses it to tell the compiler "this is hex, not some meaningless letters and numbers."

  • 2 years later...
Posted (edited)

0x[0-9|A|B|C|D|E|F]+ : Hexadecimal

 

0[0-7]+ : Octal

 

int Piano = (0xCDEFAB); // hexadecimal (0x..)

int Zero = (00); // octal (0..)

int JamesBond = (.007); // decimal (.xxx)

Edited by khaled
  • 3 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.