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

Post New Answer

More C Interview Questions

What is the difference between static and global variables?

1 Answers  


Which header file is essential for using strcmp function?

0 Answers  


#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?

4 Answers   IIIT,


List some applications of c programming language?

0 Answers  


Explain what is the difference between null and nul?

0 Answers  






What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these

3 Answers   IBM,


write a fuction for accepting and replacing lowercase letter to'Z' with out using inline function.

5 Answers   Temenos,


Write a pro-gramme to determine whether the number is even or odd?

1 Answers  


Why preprocessor should come before source code?

2 Answers  


What is the difference between void main and main in c?

0 Answers  


Explain #pragma statements.

0 Answers  


which is faster execution: loops or recursion?

3 Answers  


Categories