c program to compute Income tax and Net Salary for its employees. The company offers tax relief of Kshs. 650 for single employees and Kshs. 1,100 for married employees. The relief will be deducted from the Gross salary, to give the taxable income. This will be computed at the following rates: [10mks] Taxable Income Rate (%) <5000 0 5000-19999 6 20000-36999 9 37000 and above 16
1 1828Function calling procedures? and their differences? Why should one go for Call by Reference?
ADP,
1041Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
1215How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
1053
What are the types of bitwise operator?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
What are the 5 data types?
Are the variables argc and argv are local to main?
What is the difference between union and structure in c?
Explain what is meant by high-order and low-order bytes?
What is meant by int main ()?
What is property type c?
Write a program with dynamically allocation of variable.
What does typeof return in c?
What are bitwise shift operators in c programming?
What are header files in c?
What standard functions are available to manipulate strings?
Is c easy to learn?
Why n++ execute faster than n+1 ?