write c program to display output 10(10+20)+(10+20+30)+ ... n
term


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

what is the purpose of the code, and is there any problem with the code? int f( int n, int l, int r ) { return (n << l) >> r; }

2 Answers   Google,


Write a c program to print the even numbers followed by odd numbers in an array without using additional array

1 Answers   Tech Mahindra,


in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?

4 Answers   Infosys, NetApp,


Define VARIABLE?

0 Answers   ADP,


we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?

0 Answers  


main() { float a=8.8; double b=8.8; if(a==b) printf("Equal"); else printf("not equal"); getch(); } what is the output? with reason

6 Answers   CSC,


What is extern storage class in c?

0 Answers  


program to find the roots of a quardratic equation

1 Answers  


Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)

0 Answers  


What is call by value in c?

0 Answers  


What is wild pointer in c?

0 Answers  


What are the rules for the identifier?

0 Answers  


Categories