What is the difference b/w main() in C language and main()
in C++.
Answer Posted / vignesh1988i
there is no difference between main() in both of the
languages...... in c++ we will see all intrerms of
objects.... thats all......
| Is This Answer Correct ? | 13 Yes | 5 No |
Post New Answer View All Answers
Is c dynamically typed?
Where are c variables stored in memory?
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 run-time errors?
Which is better malloc or calloc?
What is clrscr ()?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
What library is sizeof in c?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
What is dynamic memory allocation?
What is difference between static and global variable in c?
Apart from dennis ritchie who the other person who contributed in design of c language.
Explain how are 16- and 32-bit numbers stored?
Using which language Test cases are added in .ptu file of RTRT unit testing???
What is a buffer in c?