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 do you mean by invalid pointer arithmetic?
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
write a function that accepts an array A with n elements and array B with n-1 elements. Find the missing one in array B,with an optimized manner?
What are c preprocessors?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
what is difference between getchar,putchar functions and printf and scanf function? does putchar show output only when input given to it
What is the use of typedef in structure in c?
What does %d do?
develop algorithms to add polynomials (i) in one variable
Derive the complexity expression for AVL tree?
#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(); }
Why is c called c not d or e?