what is available in C language but not in C++?
Answer Posted / hussain reddy
malloc calloc realloc and free in c but not in c++
| Is This Answer Correct ? | 7 Yes | 4 No |
Post New Answer View All Answers
Explain the array representation of a binary tree in C.
What functions are in conio h?
Describe the order of precedence with regards to operators in C.
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
Explain the use of 'auto' keyword in c programming?
how can use subset in c program and give more example
What is a example of a variable?
What does typedef struct mean?
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.
Are the outer parentheses in return statements really optional?
What is static function in c?
What are the standard predefined macros?
Between macros and functions,which is better to use and why?
What are the properties of union in c?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.