Answer Posted / guest
predfined
| Is This Answer Correct ? | 5 Yes | 10 No |
Post New Answer View All Answers
What is binary tree in c?
What is a built-in function in C?
Can we declare variable anywhere in c?
What is volatile keyword in c?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?
What is meant by recursion?
What is a floating point in c?
What is the difference between constant pointer and constant variable?
What is wrong with this program statement? void = 10;
Can include files be nested? How many levels deep can include files be nested?
Can an array be an Ivalue?
define string ?
What are the application of void data type in c?
#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); }
Can main () be called recursively?