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.
2) the Event Manager
has to send participants to the stage to perform in the
order in which they registered.
Write a program that will help the Event Manager know who to
call to the stage to
perform.
The Logic should be in Data Structures
No Answer is Posted For this Question
Be the First to Post Answer
What is file in c preprocessor?
#include<stdio.h> #include<conio.h> void main() { clrscr(); int a=0,b=0,c=0; printf("enter value of a,b"); scanf(" %d %d",a,b); c=a+b; printf("sum is %d",c); getch(); }
What are integer variable, floating-point variable and character variable?
Please write me a program to print the first 50 prime numbers (NOT between the range 1 -50)
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
Write a program to check palindrome number in c programming?
What is the significance of scope resolution operator?
0 Answers Agilent, ZS Associates,
hi send me sample aptitude papers of cts?
Why do we use main function?
Is c easy to learn?
can any one provide me the notes of data structure for ignou cs-62 paper
enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?