What is the difference between big endian form and little
endian form? write a code to convert big endian form to
little endian and vice versa..
Answer Posted / amit
the endianness of a bus determines whether the MSB is put
into the lowest address
(big-endian) or in the highest address (little-endian).
| Is This Answer Correct ? | 13 Yes | 5 No |
Post New Answer View All Answers
What does stand for?
What is %g in c?
What is a macro?
What do you understand by normalization of pointers?
How to set file pointer to beginning c?
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
What is memory leak in c?
Explain how do you print only part of a string?
Explain c preprocessor?
what does static variable mean?
Why is it important to memset a variable, immediately after allocating memory to it ?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
What is hungarian notation? Is it worthwhile?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
Place the #include statement must be written in the program?