Tagged Questions
The octal numeral system, or oct for short, is the base-8 number system, and uses the digits 0 to 7
140
votes
4answers
3k views
Is 0 a decimal literal or an octal literal?
Zero is always zero, so it doesn't matter. But in a recent discussion with my friend he said that octal literals are almost unused today. Then it dawned upon me that actually almost all integer ...
56
votes
8answers
10k views
Workarounds for JavaScript parseInt octal bug
Try executing the following in JavaScript:
parseInt('01'); //equals 1
parseInt('02'); //equals 2
parseInt('03'); //equals 3
parseInt('04'); //equals 4
parseInt('05'); //equals 5
parseInt('06'); ...
13
votes
2answers
546 views
Can I customize syntax highlighting in Eclipse to show octal literals differently?
I think octal literals are Very Dangerous Things™, and I'd like them to be glaringly obvious whenever I read source codes.
There must be a way to do this in Eclipse, right?
So it looks like ...
10
votes
3answers
943 views
Java int division confusing me
I am doing very simple int division and I am getting odd results.
This code prints 2 as expected:
public static void main(String[] args) {
int i = 200;
int hundNum = i / 100;
...
9
votes
3answers
115 views
Why do PHP and JavaScript have problems dealing with octal and hexadecimal numbers?
I have noticed that PHP and JavaScript treat octal and hexadecimal numbers with some difficulty while type juggling and casting:
PHP:
echo 16 == '0x10' ? 'true' : 'false'; //true, as expected
echo 8 ...
8
votes
9answers
335 views
In what situations is octal base used?
I've seen binary and hex used quite often but never octal. Yet octal has it's own convention for being used in some languages (ie, a leading 0 indicating octal base). When is octal used? What are some ...
5
votes
2answers
172 views
how do I print a binary double array from commandline (unix)
I got binary file, that contains doubles. How do i print that out to a terminal.
I've tried octaldump 'od' but cant figure out the syntax I've tried something like
head -c80 |od -f
But that doesnt ...
4
votes
3answers
85 views
C++ cout output explanation please [closed]
Possible Duplicate:
why is initializing an integer in VC++ to 010 different from initialising it to 10?
This got me very confused, and I hope one of you can answer my question. How come ...
4
votes
6answers
511 views
HELP! I don't know binary, hexadecimal, octal, and bit-wise
I haven't learned this in programming class before, but now I need to know it. What are some good resources for learning these numbers and how to convert them? I pretty much am going to memorise these ...
4
votes
3answers
2k views
Python: Invalid Token
Some of you may recognize this as Project Euler's problem number 11. The one with the grid.
I'm trying to replicate the grid in a large multidimensional array, But it's giving me a syntax error and ...
3
votes
2answers
329 views
How to print hex value of 255 in Unix?
can you please tell me
How to use printf to find out the hex and octal values of 255?
Thanks a lot.
3
votes
2answers
656 views
Invalid Token when using Octal numbers
I'm a beginner in python and I'm trying to use a octal number in my script, but when I try it, it returns me that error:
>>> a = 010
SyntaxError: invalid token (<pyshell#0>, line 1)
...
3
votes
3answers
1k views
Difference between 'character' and 'octet' in hashing
I see the term 'octet' popping up in literature about nonces for hashing, and it seems to be synonymous with 'character', although there is a kind of pattern to how the words are used.
This leads me ...
2
votes
2answers
52 views
what is an octal byte, is this definition correct?
My instructor stated that "an octal byte consists of 6 bits". I am having difficulty understanding why this is, as an octal digit consists of 3 binary bits. I also do not understand the significance ...
2
votes
5answers
72 views
Backslash + number interpreted by PHP as an octal value, how to block this?
I have to reformat a string that can contain the following :
$string = "---8\7----";
The problem is that '\7' is interpreted by PHP as an octal value instead of just '\' and then '7'.
How can I ...
2
votes
5answers
129 views
long value with 0 on left
Why this behavior happens?
long value = 123450;
System.out.println("value: " + value);
value: 123450
long value = 0123450;
// ^
System.out.println("value: " + value);
value: ...
2
votes
5answers
346 views
Decimal to octal in C
I have just begun teaching myself C out of K.N King's C Programming: A Modern Approach (2ndEdn).
I'm enjoying it, but am hoping to post the odd question here for advice if appropriate because ...
2
votes
3answers
292 views
What is a Illegal octal digit?
I'm trying to make an array of zip codes.
array = [07001, 07920]
This returns :
array = [07001, 07920]
^
from (irb):12
from :0
Never seen this before. Any workarounds?
2
votes
1answer
288 views
How do I convert an octal number to decimal in Ruby?
I am trying to find a clean way of referencing an array's index using octal numbering. If I am looking for the array index that is octal 13 it should return the value for a[11].
This is what I have ...
2
votes
1answer
116 views
C++ question on file formats and od
I have the following simple code:
ofstream output("test");
output << 'a';
When I do an octal dump of the file, I get this:
0000000 000141
0000001
I can see that 000141 (in base 8) is 8 ...
2
votes
3answers
137 views
what is the reason for the difference between setprecision (12) and setprecision (012) for example,in c++?
In c++ when you write setprecision (12) for example, 12 is in the base of 10 but when you write it like setprecision (012) it is an octal number,why?
2
votes
5answers
1k views
Handling numbers with leading zeros in Tcl
I am having trouble in Tcl using numbers with leading zeros. I am parsing some numbers that can have leading zeros, such as "0012", which should be interpreted as the integer "twelve".
$ tclsh
% set ...
2
votes
5answers
178 views
How does Casting work in PHP?
What doesn't this work:
(int)08 == (int)09==0
But this and this does?
(int)07==7
(int)06==6
2
votes
5answers
336 views
Where did the octal/hex notations come from?
After all of this time, I've never thought to ask this question; I understand this came from c++, but what was the reasoning behind it:
Specify decimal numbers as you
normally would
Specify octal ...
2
votes
4answers
279 views
Octal to sign in string from array
I want to convert octal sign like \46 to normal sign like &.
The problem is that the input is created with preg_match_all(), put into an array and then retrieved.
If I'd manually input the \46 ...
1
vote
1answer
65 views
Understanding str_pad() with leading zeros
I'm trying to build a php function and discovered some weird behavior and I can't even formulate a proper question, so if anyone can explain what is going on, I would appreciate it.
I'm working with ...
1
vote
2answers
45 views
Reliable integer typecasting
I'm working on a data validator package for PHP (mostly as an exercise in some of the new additions in 5.3 such as namespaces). I'm planning to have a main validator class which uses plugin classes ...
1
vote
1answer
155 views
PHP: Why the 'abs' function returns a wrong number if it begins with zero?
The code "abs(070000)" returns 28672, but the code "abs(70000)" returns 70000.
Did the zero at the beginning means that the number is interpreted as hex?
Thank you!
1
vote
4answers
151 views
Working with PHP Octals and String conversions
I'm working with a database that has a bunch of serial numbers that are prefixed with leading 0's.
So a serial number can look like 00032432 or 56332432.
Problem is with PHP I don't understand how ...
1
vote
3answers
118 views
Leading and Trailing '0' gives error
random.randint(50,9)
or
random.randint(5,09)
give errors, although just
random.randint(5,9)
..works!
Leading and trailing zero's aren't allowed in python without converting it to string or ...
1
vote
7answers
120 views
strange behaviour on php
Can some one please tell me why I get odd results rurning the following code?
<?php
class Bank
{
var $ID;
var $balance;
var $name;
function bank($name,$id,$balance=0)
{
...
1
vote
5answers
595 views
09 is not recognized where as 9 is recognized
I am using quartz for schedulling.
TriggerUtils.getDateOf(0,40,18,09,06);
it accept 5 parameter. (seconds, minutes, hours, daysOfMonth, month).
When i pass fourth parameter as "09". Eclipse give me ...
1
vote
1answer
388 views
AJAX Asp.net AutoCompleteExtender interpreting string 0010 as octal
I'm using the MS AJAX AutoCompleteExtender on a textbox. It's working fine, except when the web service returns strings like "0010" -- in which case, it displays "8".
I eventually realised it was ...
1
vote
4answers
2k views
floating point hex octal binary
I am working on a calculator that allows you to perform calculations past the decimal point in octal, hexadecimal, binary, and of course decimal. I am having trouble though finding a way to convert ...
0
votes
2answers
31 views
remove/replace octal escapes from html
I have octal escapes in my html(stored as a string), which displays on the browser as �.
eg:- "Thanks for the update\205.nt"
Is there a way to remove these from the string or make it render properly ...
0
votes
1answer
62 views
PHP: fileperms() values and convert these
Here is something i dont understand:
A file has the permission 0644 which if i use php´s fileperms() functions returns 16804 as integer if i make a var_dump(). What/where is the relation between the ...
0
votes
1answer
52 views
Is there a warning in gcc for octal literals?
ie. so that if you use any octal literals it give you a warning.
Same question for Microsoft's compiler.
If not are there any other tools to detect octal literals.
(vim seems to have a cool trick ...
0
votes
4answers
288 views
Octal conversion using loops in C++
I am currently working on a basic program which converts a binary number to an octal. Its task is to print a table with all the numbers between 0-256, with their binary, octal and hexadecimal ...
0
votes
3answers
57 views
Passing octal value to new number function
I've made something like :
Number.prototype.foo = function () {
//code
}
// Octal number!
(013).foo();
But inspecting this inside of foo function, I get 11 as value... What's wrong?
0
votes
3answers
137 views
int variable with leading zero?
Why is it that following results in 34?
It doesn't seem to have anything to do with octal numbers.
intval(042);
0
votes
1answer
71 views
Rails Activermerchant Truscommerce Capture Transid Invalid Octal Digit
I have a file named purchase.rb that I am using to test Activemerchant with Trustcommerce:
require "rubygems"
require "active_merchant"
Use the TrustCommerce test servers
...
0
votes
3answers
285 views
Converting Decimal to Hexadecimal and Octal
Show how to write a constant in C, whose decimal value is 65 as
a. a hexadecimal constant
65/16 = 1 r1
1/16 = 0 r1
Hexadecimal constant = 11
b. an octal constant (in C)
65/8 = 8 r1
8/8 = 1 r0
1/8 = 0 ...
0
votes
2answers
233 views
3-bit encoding = Octal; 4-bit encoding = Hexadecimal; 5-bit encoding =?
Is there encoding using 5-bit as one group to encode a binary data?
A-Z contains 26 chars and 0-9 contains 10 chars. There are totally 36 chars which are sufficient for 5-bit encoding (32 ...
0
votes
0answers
155 views
converting nonprintable characters to 3-byte octal with hexdump
goal - convert a binary file to one where printable characters are left as-is, an all non-printable characters are converted to double-backslash escaped 3-digit octal sequences (postgresql binary ...
0
votes
4answers
169 views
Why is 032 different than 32 in Ruby?
I have noticed Ruby behaves differently when working with 032 and 32. I once got syntax errors for having 032 instead of just 32 in my code. Can someone explain this to me? Or is there something ...
0
votes
1answer
165 views
How to convert string “0671” or “0x45” into integer form with 0 and 0x in the beginning
I wanted to make my own encryption algorithm and decryption algorithm , encryption algorithm works fine and converts ascii value of the characters into alternate hexadecimal and octal representations. ...
0
votes
2answers
2k views
converting hexadecimal , octal numbers into decimal form using python script
There are many inbulit functions like int(octal) which can be used to convert octal numbers into decimal numbers on command line but these doesn't work out in script .
int(0671) returns 0671 in ...
0
votes
2answers
304 views
Python2.6 Decimal to Octal
How can i convert decimal to Octal in Python2.6, for 1 to 100000? I wanna get this converted result as .txt too. Can someone help me?
0
votes
3answers
228 views
MS Calculator on windows 7. I need to know how it does its operations
MS calculator on windows 7 has a "programmers" mode. When I type in (in binary): 1111111111111111111111111111111111111111111111111111111111111111
and then click "Dec", the binary turns into -1. When ...
-1
votes
1answer
95 views
Computer Math conversion
i want to know how we can convert rational numbers all forms of rational octal and hexadecimal conversions