Write a program to generate the first n terms in the series --- 9,11,20,31,...,82
1,1,5,17,61,217,?,?.
What are local static variables? How can you use them?
What is the difference between functions abs() and fabs()?
Why is it usually a bad idea to use gets()? Suggest a workaround.
who is first prime minister in india??
Explain what is wrong in this statement?
What is c programing language?
how to write a c program to print list of fruits in alpabetical order?
int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?
what are the languages used in c#?
how does the for loop work actually..suppose for the following program how it ll work plz explain to me for(i=5;i>=0;i--) prinf(i--);
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures