write c program to display output 10(10+20)+(10+20+30)+ ... n
term
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; }
Write a c program to print the even numbers followed by odd numbers in an array without using additional array
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
Define VARIABLE?
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 ?
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
What is extern storage class in c?
program to find the roots of a quardratic equation
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
What is call by value in c?
What is wild pointer in c?
What are the rules for the identifier?