RAD Studio
ContentsIndex
PreviousUpNext
Integer Constant Without L Or U

 

Decimal constants

0 to 32,767  
int  
32,768 to 2,147,483,647  
long  
2,147,483,648 to 4,294,967,295  
unsigned long  
> 4294967295  
truncated  

 

Octal constants

00 to 077777  
int  
010000 to 0177777  
unsigned int  
02000000 to 017777777777  
long  
020000000000 to 037777777777  
unsigned long  
> 037777777777  
truncated  

 

Hexadecimal constants

0x0000 to 0x7FFF  
int  
0x8000 to 0xFFFF  
unsigned int  
0x10000 to 0x7FFFFFFF  
long  
0x80000000 to 0xFFFFFFFF  
unsigned long  
>0xFFFFFFFF  
truncated  
Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!