Write a small C program to determine whether a machine's
type is little-endian or big-endian.

Answers were Sorted based on User's Feedback



Write a small C program to determine whether a machine's type is little-endian or big-endian...

Answer / vasundhara

int main()
{
int x=1;

if(*(char*)&x)
printf("little endian");
else
printf("big endian");

return 0;
}

Is This Answer Correct ?    7 Yes 1 No

Write a small C program to determine whether a machine's type is little-endian or big-endian...

Answer / anuraag

Vasudhara's solution is correct!
Still here is an alternative solution to check endianess
without using pointers...

int main()
{
int x=0x58;
char ch;
ch=x;

if(ch=0x58)
printf("Little Endian");
else
printf("Big Endian");
return 0;
}

Is This Answer Correct ?    3 Yes 1 No

Write a small C program to determine whether a machine's type is little-endian or big-endian...

Answer / udita

little indian

Is This Answer Correct ?    5 Yes 8 No

Write a small C program to determine whether a machine's type is little-endian or big-endian...

Answer / sudheer

little india

Is This Answer Correct ?    2 Yes 8 No

Write a small C program to determine whether a machine's type is little-endian or big-endian...

Answer / mohana

The below code snipeet tells whether the system is little
or big endian.

int main()
{
int x=1;

if(x)
printf("big endian");
else
printf("little endian");

return 0;
}

Is This Answer Correct ?    7 Yes 24 No

Post New Answer

More C Interview Questions

Hi can anyone tell what is a start up code?

0 Answers   CTS,


What is the difference between typeof(foo) and myFoo.GetType()?

2 Answers   Synergy,


the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters

0 Answers  


formula to convert 2500mmh2o into m3/hr

0 Answers  


How to set file pointer to beginning c?

0 Answers  






Do string constants represent numerical values?

0 Answers  


What is array in c with example?

0 Answers  


What is strcmp in c?

0 Answers  


Here is a neat trick for checking whether two strings are equal

0 Answers  


WHAT IS FLOAT?

3 Answers  


What should malloc() do?

0 Answers  


Who is invented by c?

24 Answers   Infosys, Mphasis,


Categories