Answer Posted / shrikantauti
strcat()
it appends two strings.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
The program will first compute the tax you owe based on your income. User is prompted to enter income. Program will compute the total amount of tax owed based on the following: Income Tax 0 - $45,000 = 0.15 x income $45,001 - $90,000 = 6750 + 0.20 x (income – 45000) $90,001 - $140,000 = 15750 + 0.26 x (income – 90000) $140,001 - $200,000 = 28750 + 0.29 x (income – 140000) Greater than $200,000 = 46150 + 0.33 x (income – 200000) Dollar amounts should be in dollars and cents (float point numbers with two decimals shown). Tax is displayed on the screen.
What are the loops in c?
What is difference between array and structure in c?
What does the && operator do in a program code?
Explain why C language is procedural?
What is the c language function prototype?
Write a Program to find whether the given number or string is palindrome.
What are the types of type specifiers?
What is the use of typedef in c?
What are the restrictions of a modulus operator?
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
What is pointer to pointer in c with example?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
What is the time and space complexities of merge sort and when is it preferred over quick sort?
What is pivot in c?