Answer Posted / roshan
In a simple word.....
A pointer is a variable which is store the address of another variable.
| Is This Answer Correct ? | 11 Yes | 1 No |
Post New Answer View All Answers
Why doesnt that code work?
How can I determine whether a machines byte order is big-endian or little-endian?
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
How would you use the functions fseek(), freed(), fwrite() and ftell()?
what is the different bitween abap and abap-hr?
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
What is a constant?
Why c is called a mid level programming language?
Differentiate abs() function from fabs() function.
Explain high-order bytes.
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 was c created?
What is the deal on sprintf_s return value?
Did c have any year 2000 problems?
What do you mean by a sequential access file?