i have a written test in tomorrow
write a program to copy the string using switch case?
State the difference between x3 and x[3].
What are conditional operators in C?
What are pointers? What are stacks and queues?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
What is #line in c?
What are identifiers and keywords in c?
Write a program to print ASCII code for a given digit.
Write a program to print "hello world" without using a semicolon?
Why clrscr is used in c?
What does sizeof function do?
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.