Explain bitwise shift operators?
No Answer is Posted For this Question
Be the First to Post Answer
main() { printf("hello%d",print("QUARK test?")); }
There is a 100-story building and you are given two eggs. The eggs (and the building) have an interesting property that if you throw the egg from a floor number less than X, it will not break. And it will always brake if the floor number is equal or greater than X. Assuming that you can reuse the eggs which didn't broke; you got to find X in a minimal number of throws. Give an algorithm to find X in minimal number of throws.
What is the difference between pure virtual function and virtual function?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
Who is invented by c?
What is your stream meaning?
What is structure data type in c?
what is unsigened char and what is the difference from char
Illustrate it summing the series 2+4+6+......to n terms using (i) while loop (ii) do-while loop
write a program to find the largest and second largest integer from an array
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
Write a C program to get the desired output. 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 . . . 1 n..............n 1 Note: n is a positive integer entered by the user.