0
votes
3answers
147 views
Confusion in htons- little endian/ big endian
When I send a integer variable from one process to other through socket, and then printing the value at received end, the value is still the same without using ntohl/htonl, then wh …
1
vote
5answers
121 views
How to find out the endianness of a machine through a C program? [closed]
Possible Duplicate:
Detecting endianness programmatically in a C++ program
Is there some way to know whether the machine is big-endian or little-endian, in a C program?
0
votes
2answers
78 views
How are ASCII characters stored in memory?
Consider a computer that has a byte addressable memory organized in 32 bit words according to the big endian scheme. A program reads ASCII characters entered at a keyboard and stor …
0
votes
2answers
96 views
How fast is the procedure to convert from using big endian to little endian?
How fast is the procedure to convert from using big endian to little endian?
7
votes
1answer
156 views
What’s the most Pythonic way of determining endianness?
I'm trying to find the best way of working out whether the machine my code is running on is big-endian or little-endian. I have a solution that works (although I haven't tested it …
2
votes
6answers
904 views
Does my AMD-based machine use little endian or big endian?
I'm going though a computers system course and I'm trying to establish, for sure, if my AMD based computer is a little endian machine? I believe it is because it would be Intel-com …
2
votes
3answers
546 views
Bitwise Not Operator (~ in C) with regards to little endian and big endian
This is in relation to a homework assignment but this is not the homework assignment.
I'm having difficultly understanding if there is a difference on how the bitwise not (~ in C …
1
vote
2answers
185 views
mmap big endian vs. little endian
If I use mmap to write uint32_t's, will I run into issues with big endian/little endian conventions? In particular, if I write some data mmap'ed on a big-endian machine, will I ru …
