The process of repeatedly running a set of computer instructions until some condition is specifed
a) condition
b) sequential condition
c) global
d) iteration
No Answer is Posted For this Question
Be the First to Post Answer
hi send me sample aptitude papers of cts?
What is stack in c?
Where is volatile variable stored?
Tell me when would you use a pointer to a function?
what is different between auto and local static? why should we use local static?
print the pattern 1 2 4 3 6 9 4 8 12 16 5 10 15 20 25 if n=5
What is data structure in c and its types?
what will be the output of this program? #include<stdio.h> #define cube(x) x*x*x void main() { int i,j=5; i=cube(j+3); printf("i=%d",i); }
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
What should malloc(0) do?
Can you mix old-style and new-style function syntax?
5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.