Write a code of a general series where the next element is the sum of last k terms.
No Answer is Posted For this Question
Be the First to Post Answer
What is meant by initialization and how we initialize a variable?
Calculate 1*2*3*____*n using recursive function??
What is the use of extern in c?
wt is d full form of c
What functions are in conio h?
How can we see the Expanded source code and compiled code for our source program in C?
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
create a C program that displays one z,two y's,three x's until twenty six A's. plzz answer i need it tomorrow.
How to find the usage of memory in a c program
#include<stdio.h> int f(int,int); int main() { printf("%d",f(20,1)); return 0; } int f(int n,int k) { if(n==0) return 0; else if(n%2)return f(n/2,2*k)+k; else return f(n/2,2*k)-k; } how this program is working and generating output as 9....?
Why do we use null pointer?
parkside's triangle.. create a program like this.. enter the size: 6 enter the seed: 1 output: 1 23 456 7891 23456 789123 sample2: enter the size: 5 enter the seed: 3 output: 3 45 678 9123 45678 parkside should not exceed 10 while its seed should only be not more than 9..