Did you know that octal literals are very common even in modern C++ and C code?
Uncategorized
2
Posts
2
Posters
1
Views
-
Did you know that octal literals are very common even in modern C++ and C code?
The literal integer 0 is octal by definition, as it starts with a '0' and it is not followed by a 'x' or 'b' that would make it hexadecimal or binary.
(Picked up from elsewhere.)
-
undefined oblomov@sociale.network shared this topic
-
Did you know that octal literals are very common even in modern C++ and C code?
The literal integer 0 is octal by definition, as it starts with a '0' and it is not followed by a 'x' or 'b' that would make it hexadecimal or binary.
(Picked up from elsewhere.)
@tml this is brilliant.