Write a code to generate a 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 the use of a semicolon (;) at the end of every program statement?
what's the o/p int main(int n, char *argv[]) { char *s= *++argv; puts(s); exit(0); }
Why is c not oop?
different between overloading and overriding
Explain setjmp()?
What are the two types of functions in c?
plz answer.... write a program that reads line (using getline) e.g."345", converts each line to an integer using "atoi" and computes the average of all the numbers read. also compute the standard deviation.
What is the size of empty structure in c?
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }
main() { printf(5+"Vidyarthi Computers"); }
What is derived datatype in c?
I need to take a sentence from input and sort the words alphabetically using the C programming language. Note: This is C not C++. qsort and strtok not allowed