Answer Posted / k.thejonath
char (*)p[100];
Here p is a pointer to an array of 100 character elements..
| Is This Answer Correct ? | 6 Yes | 11 No |
Post New Answer View All Answers
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
what is event driven software and what is procedural driven software?
How will you declare an array of three function pointers where each function receives two ints and returns a float?
What is new line escape sequence?
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
Tell me is null always defined as 0(zero)?
What are the 4 types of organizational structures?
What is null pointer in c?
Can we change the value of static variable in c?
What is volatile keyword in c?
Can you define which header file to include at compile time?
What are the different types of pointers used in c language?
What is #define size in c?
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.
How do you use a pointer to a function?