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 / vivek
in little endien lsb is at lower addess and in big endien
msb at lower address
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Where are local variables stored in c?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
What is an example of structure?
Explain #pragma statements.
What are pointers really good for, anyway?
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
if p is a string contained in a string?
develop algorithms to add polynomials (i) in one variable
What are run-time errors?
What is a example of a variable?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
How pointer is different from array?
What standard functions are available to manipulate strings?
Can true be a variable name in c?
Explain the use of keyword 'register' with respect to variables.