Write a small C program to determine whether a machine's
type is little-endian or big-endian.
Answer Posted / udita
little indian
| Is This Answer Correct ? | 5 Yes | 8 No |
Post New Answer View All Answers
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
What is the meaning of c in c language?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
Is main is user defined function?
What is a ternary operator in c?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
How can you increase the size of a dynamically allocated array?
Why double pointer is used in c?
What is a scope resolution operator in c?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
how is the examination pattern?
Explain how can I avoid the abort, retry, fail messages?
What is signed and unsigned?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
Explain a pre-processor and its advantages.