Do you know what are bitwise shift operators in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
What does != Mean in c?
Explain indirection?
What is the difference between functions getch() and getche()?
Write a progarm to find the length of string using switch case?
implement NAND gate logic in C code without using any bitwise operatior.
what is the diff b/w static and non static variables in C. Give some examples plz.
What is structure padding & expalain wid example what is bit wise structure?
extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }
Explain can the sizeof operator be used to tell the size of an array passed to a function?
What is the use of sizeof?
What is an object?