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
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); }
What will be the result of the following C language program? main() { int a = 0; int b = 20; char x = 1; char y = 10; if(a,b,x,y) printf("Welcome"); }
Write a program to write a given string in maximum possibilities? i.e str[5]="reddy"; i.e we can write this string in 120 ways for that write a program
what is the output on the screen? int n; n=printf("my name is %d",printf("kiran %d",printf("kumar"))); printf("\n %d \n",n);
Where are the auto variables stored?
How can I read in an object file and jump to locations in it?
what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))".provide an explation regarding the question
Is python a c language?
what is the role you expect in software industry?
c program to compute AREA under integral
Explain continue keyword in c
Write a c program to Find the name that you entered is male name or female name? Such as Sunjay is name of male and Payal is name of female