what is the value of b
if a=5;
b=++a + ++a
Answer Posted / ranvir kumar singh
Answer would be 13
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
What does p mean in physics?
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 functions are in conio h?
What does the c in ctime mean?
Should a function contain a return statement if it does not return a value?
how should functions be apportioned among source files?
How to declare a variable?
What does s c mean in text?
What is the function of this pointer?
When should a type cast be used?
how to execute a program using if else condition and the output should enter number and the number is odd only...
Is that possible to add pointers to each other?
Where we use clrscr in c?
a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation a) circular b) ordinary c) array d) linear list