![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| High Level Programming Post questions about C, C++, Java, SQL, and other programming languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Check URL with ksh | HexAnubis666 | Shell Programming and Scripting | 1 | 07-30-2008 05:29 AM |
| Calculation - Result not accurate if numbe too big | epall | UNIX for Dummies Questions & Answers | 3 | 06-13-2006 10:11 AM |
| Script to check for a file, check for 2hrs. then quit | mmarsh | UNIX for Dummies Questions & Answers | 2 | 09-16-2005 03:46 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Certain conventions are used when dealing with numbers in different bases. Hex digits are prefixed with 0x or 0X; octals have a leading zero; and decimals are written as is...
Code:
int dec, oct, hx; oct = 056; /* octal 56 */ hx = 0x56; /* hex 56 */ dec = 56; /* decimal 56 */ |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|