Write a program that will read the input of any number of digits n in a row of shafh showing the breakdown of the printing and printing figures by the recursive function.
No Answer is Posted For this Question
Be the First to Post Answer
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
write a c program to find the probability of random numbers between 1-1000
how to find the kth smallest element in the given list of array elemnts.
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
consider the following program sigment int n,sum=1; switch(n) { case 2:sum=sum+2; case 3:sum*=2; break; default:sum=0;} if n=2, what is the value of sum a.0 b.6 c.3 d.none
What does extern mean in a function declaration?
What is the memory allocated by the following definition ? int (*x)[10];
Can you subtract pointers from each other? Why would you?
What is ambagious result in C? explain with an example.
What are the different types of control structures?
What are data types in c language?
simple program of graphics and their output display