Explain high-order and low-order bytes.
can anyone please tell about the nested interrupts?
Differentiate between declaring a variable and defining a variable?
Who invented bcpl language?
Explain what is the best way to comment out a section of code that contains comments?
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);
Combinations of fibanocci prime series
Write a program to print the following series 2 5 11 17 23 31 41 47 59 ...
praagnovation
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.
#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
write a c program to add two integer numbers without using arithmetic operator +