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
Explain pointers in c programming?
What is the difference between #include and #include 'file' ?
What is && in c programming?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
all c language question
Explain how can you tell whether a program was compiled using c versus c++?
Not all reserved words are written in lowercase. TRUE or FALSE?
What are variables c?
How do you list a file’s date and time?
How are pointers declared in c?
Mention four important string handling functions in c languages .
What is the difference between fread and fwrite function?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
Are the expressions * ptr ++ and ++ * ptr same?
When should I declare a function?