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

Post New Answer

More C Interview Questions

write a c program to store and print name,address,roll.no of a student using structures?

7 Answers  


What are the types of variables in c?

0 Answers  


write a program structure to find average of given number

1 Answers  


int a=0,b=2; if (a=0) b=0; else b=*10; What is the value of b ?

6 Answers   TCS,


Write a main() program that calls this function at least 10 times. Try implementing this function in two different ways. First, use an external variable to store the count. Second, use a local variable. Which is more appropriate?

2 Answers  






How are pointers declared in c?

0 Answers  


Is main is a keyword in c?

0 Answers  


34.what are bitwise shift operators? 35.what are bit fields? What is the use of bit fields in a structure declaration? 36.what is the size of an integer variable? 37.what are the files which are automatically opened when a c file is executed? 38.what is the little endian and big endian? 39.what is the use of fflush() function? 40.what is the difference between exit() and _exit() functions? 41.where does malloc() function get the memory? 42.what is the difference between malloc() and calloc() function? 43.what is the difference between postfix and prefix unary increment operators?

0 Answers  


What type of function is main ()?

0 Answers  


Given an array of numbers, except for one number all the others occur twice. Give an algorithm to find that number which occurs only once in the array.

6 Answers  


value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?

6 Answers   Google,


How to swap 3 numbers without using 4th variable?

5 Answers  


Categories