Tagged Questions

7
votes
7answers
6k 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-compatible. ...
5
votes
3answers
219 views

Does Bit Shift Depends on Endianness?

Suppose I have the number 'numb'=1025 [00000000 00000000 00000100 00000001] represented: On Little-Endian Machine: 00000001 00000100 00000000 00000000 On Big-Endian Machine: 00000000 00000000 ...
4
votes
1answer
183 views

C library function to convert binary byte array to integer with various conversions

Is there a set of C library functions (or non-library functions collected somewhere) which allow conversion of byte-array data into integers with various conversions (big-endian data, little-endian ...
3
votes
5answers
1k views

Little endian Vs Big endian

Lets say I have 4Byte integer and I want to cast it to 2Byte short integer. Am I right that in both (little and big endian) short integer will consist of 2 least significant bytes of this 4Byte ...
2
votes
5answers
153 views

Determining if A System Uses Big Endian or Little Endian using C

I'm curious if this function will determine endianness. The test is a bitmask that equals 1 if the integer someInt is stored in little endian. in the bitmask, would 0x1000 be converted to match ...
2
votes
4answers
154 views

How to write a 24 bit message after reading from a 4-byte integer on a big endian machine (C)?

I am constructing a message to send a 24-bit number over the network. For little endian machines, the code is (ptr is the pointer to the message buffer): *ptr++ = (num >> 16) & 0xFF; *ptr++ ...
2
votes
3answers
3k 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) would affected ...
1
vote
5answers
204 views

Swapping endiannes in C

I have this string c1eb044f0708015b267913fc4dff5aabe3dd4a97f10f7ba935cd360000000000 How does one swap it so it becomes 000000000036cd35a97b0ff1974adde3ab5aff4dfc1379265b0108074f04ebc1 Those two ...
1
vote
4answers
150 views

Is this program compatible on both big and little endian systems?

I wrote a small program which reverses a string and prints it to screen: void ReverseString(char *String) { char *Begin = String; char *End = String + strlen(String) - 1; char TempChar = ...
1
vote
3answers
1k 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 where do I need to use ...
0
votes
1answer
90 views

[C]Convert Decimal IP To Dotted Decimal Notation

I got the following Decimal IP: "3232235876" it represents "192.168.1.100" I got it in the following way: //GET IP if (gethostname(hostname, sizeof(hostname)) == SOCKET_ERROR) { ...
0
votes
2answers
49 views

Reading Big Endian from Memory and Incrementing Memory

i dunno where is the problem exactly, but it seems when i pass 'Memory' by reference, it doesn't work. im trying to Read a Word From Memory in Big Endian and Increment Data by 2 here is how i do it ...
0
votes
3answers
98 views

ASCII to Binary Representation (Big Endian)

I am writing a function that converts an ascii string to its binary representation in big endian. Here is my code: int count = 0; for (int i = 0; i < num_strs; i++) { for (int j ...
0
votes
3answers
125 views

little endian to big endian

see i have already written one library (on little endian machine)it works fine in little endian machine now i when i run in in big endian platform it doesn't works .error are very hard to ...