The performance of an operation in several steps with each step using the output of the preceding step
a) recursion
b) search
c) call by value
d) call by reference
No Answer is Posted For this Question
Be the First to Post Answer
What is 'bus error'?
what are the various memory handling mechanisms in C ?
How do you list files in a directory?
What will be the outcome of the following conditional statement if the value of variable s is 10?
what does exit() do?
What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }
write an algorithm to display a square matrix.
find a number whether it is even or odd without using any control structures and relational operators?
22 Answers Microsoft, Shashank Private Limited,
Explain union.
What are the 5 types of inheritance in c ++?
What is the difference between call by value and call by reference in c?
if we take a number as a char then can we manipulate(add, subtract) on this number