Tagged Questions
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
6answers
516 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 ...
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 ...
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
4answers
290 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 ...