Answer Posted / ann
its basically a pointer to a pointer
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is double pointer in c?
Can you define which header file to include at compile time?
In C language, a variable name cannot contain?
Do variables need to be initialized?
When should we use pointers in a c program?
What is the difference between printf and scanf in c?
how to write optimum code to divide a 50 digit number with a 25 digit number??
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.
Explain what is wrong with this program statement? Void = 10;
Do you know null pointer?
What is array of pointers to string?
When is a “switch” statement preferable over an “if” statement?
Describe the order of precedence with regards to operators in C.
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
What is difference between class and structure?