Visual Basic - Octal literal
Constants of octal numeral system are also known as octal literals. might contain digits from 0 up to 7.octal literal
Description
&O123
Output
- return - Integers
Examples
Visual Basic .NET
Octal literal the possible of use:x = &O12 ' x = 10
y = 4 * &O77 ' y = 374
if x>10 then
y = x / &Ha ' y = 1
end if
Visual Basic .NET
Other pieces of example codes:&O123
&O111
You can find it in the following collections: constants
Octal literal in another programming language:
Differences to: