What are operators in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a proram to reverse the string using switch case?
What are the standard predefined macros?
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 ?
write the program for prime numbers?
73 Answers Accenture, Aptech, Infosys, TCS,
What is the output for the below program? void main() { float me=1.1; double you=1.1; if(me==you) printf("love c"); else printf("know c"); }
What is difference between structure and union with example?
What is wrong in this statement?
Why c is called procedure oriented language?
How can I find the day of the week given the date?
What is a macro in c preprocessor?
How can you be sure that a program follows the ANSI C standard?
what does the following code do? fn(int n,int p,int r) { static int a=p; switch(n){ case 4:a+=a*r; case 3:a+=a*r; case 2:a+=a*r; case 1:a+=a*r; } } a.computes simple interest for one year b.computes amount on compound interest for 1 to 4 years c.computes simple interest for four year d.computes compound interst for 1 year