Write a small C program to determine whether a machine's
type is little-endian or big-endian.
Answer Posted / sudheer
little india
| Is This Answer Correct ? | 2 Yes | 8 No |
Post New Answer View All Answers
What are the c keywords?
Why is c fast?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What are the disadvantages of a shell structure?
What is #line used for?
What is a program flowchart and how does it help in writing a program?
What is register variable in c language?
What is wrong with this program statement? void = 10;
What is the use of extern in c?
Is main is user defined function?
Write a program to print factorial of given number without using recursion?
What is wrong in this statement?
What is linear search?
What is the purpose of type declarations?