Answer Posted / nithya
c is a common and basic structurl programming language
and then all language in basic for c.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
int i=10; printf("%d %d %d", i, i=20, i);
Why doesnt the call scanf work?
What is meant by inheritance?
What is define directive?
Is linux written in c?
Explain how can you tell whether two strings are the same?
Do you know the use of 'auto' keyword?
Explain what is the advantage of a random access file?
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 c preprocessors?
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
What is the right type to use for boolean values in c? Is there a standard type?
What is the use of getch ()?
Explain how can I read and write comma-delimited text?