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 ?
No Answer is Posted For this Question
Be the First to Post Answer
Why is structure important for a child?
What does %p mean c?
Write a program to compute the following 1!+2!+...n!
write a C code to reverse a string using a recursive function, without swapping or using an extra memory.
9 Answers Motorola, TCS, Wipro,
write a program that will read the temperature in Celsius and convert that into Fahrenheit.
What is the deal on sprintf_s return value?
What is malloc and calloc?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
Explain how can type-insensitive macros be created?
What's the difference between constant char *p and char * constant p?
write a c program to calculate the income tax of the employees in an organization where the conditions are given as. (I.T. = 0 if income <100000 I.T = 10% if income _< 200000 it = 20% if income >_ 200000)
7 Answers Consultancy, DBU, FD, JK Associates, Kobe, Satyam,
Design a program using an array that lists even numbers and odd numbers separately from the 12 numbers supplied by a user.