Explain high-order and low-order bytes.


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

Post New Answer

More C Interview Questions

can anyone please tell about the nested interrupts?

0 Answers  


Differentiate between declaring a variable and defining a variable?

0 Answers  


Who invented bcpl language?

0 Answers  


Explain what is the best way to comment out a section of code that contains comments?

0 Answers  


Add 2 64 bit numbers on a 32 bit machine

3 Answers   EMC, Hyderabad Central University, NetApp,


Find errors (1) m = ++a*5; (2) a = b ++ -c*2; (3)y = sqrt (1000);

5 Answers  


Combinations of fibanocci prime series

0 Answers  


Write a program to print the following series 2 5 11 17 23 31 41 47 59 ...

2 Answers  


praagnovation

0 Answers  


Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.

0 Answers   Infosys,


#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300

4 Answers   Tieto,


write a c program to add two integer numbers without using arithmetic operator +

13 Answers   Value Labs,


Categories