Explain high-order and low-order bytes.
Answer / Shobhit Kumar Tripathi
High-order bytes are the most significant bytes in a multi-byte value, while low-order bytes are the least significant bytes. In two's complement representation, the sign bit is usually the high-order bit.nByte order issues can arise when transferring data between different systems with different byte orders.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the use of the #include directive?
What is union and structure in c?
SIR PLS TELL ME THE CODE IN C LANGUAGE TO PRINT THE FOLLOWING SERIES 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1 1 2 3 2 1 1 2 1 1
Write a program to swap two numbers without using a temporary variable?
what is the difference between these initializations? Char a[]=”string”; Char *p=”literal”; Does *p++ increment p, or what it points to?
i want to know aptitude questions,technical questions
what is meant by c
I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.
write a program that accepts 3 numbers from the user. dispaly the values in a descending order.
void main() { //char ch; unsigned char ch; clrscr(); for(ch =0;ch<= 127; ch++) printf(" %c= %d \t ", ch, ch); } output?
Find the output? void main() {float a=2.0; printf("\nSize of a ::%d",sizeof(a)); printf("\nSize of 2.0 ::%d",sizeof(2.0));}
11 Answers IBM, TCS,
What are volatile variables?