How can I determine whether a machines byte order is big-endian or little-endian?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is the scope of an external variable in c?

0 Answers  


write a function to swap an array a[5] elements like a[0] as a[5],a[1] as a[4],....a[5] as a[0].without using more than one loop and use one array not to use temp array?

1 Answers   Zensar,


What are reserved words with a programming language?

0 Answers  


What is indirect recursion? give an example?

4 Answers  


How can I prevent another program from modifying part of a file that I am modifying?

0 Answers  






Write a program for Overriding.

0 Answers  


Is c programming hard?

0 Answers  


What are the application of c?

0 Answers  


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

0 Answers  


#include<stdio.h> int main() { int i=0,j=1,k=2,m,n=0; m=i++&&j++&&k++||n++; printf("%d,%d,%d,%d,%d",i,j,k,m,n); }

12 Answers   Capital IQ, Sasken,


What is the maximum length of an identifier?

0 Answers  


what is the different between data structure and data type?

1 Answers   Ignou,


Categories