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 function what are the types of function?
How do you define structure?
What does *p++ do?
Why isn't it being handled properly?
#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?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?
a program that can input number of records and can view it again the record
What is structure in c language?
how to find out the reverse number of a digit if it is input through the keyboard?
write a program to swap two numbers without using temporary variable?
What is hashing in c language?