Answer Posted / vaishali bhajbhuje
1. c is structure language while c++ is an object oriented language.
2. Function overloading is possible in c++ because in c++ calling depends on the fun-name and parameter list.
3. c is topdown parsing.c++ is bottom up parsing.
4. c can don only static binding while c++ can done static as well as dynamic binding.
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What extern c means?
How do you define structure?
What is return type in c?
What is the use of extern in c?
Write a C program to help a HiFi’s Restaurant automate its breakfast billing system. Your assignment should implement the following items: a. Show the customer the different breakfast items offered by the HiFi’s Restaurant. b. Allow the customer to select more than one item from the menu. c. Calculate and print the bill to the customer. d. Produce a report to present your complete program and show more sample output. Assume that the HiFi’s Restaurant offers the following breakfast menu: Plain Egg $2.50 Bacon and Egg $3.45 Muffin $2.20 French Toast $2.95 Fruit Basket $3.45 Cereal $0.70 Coffee $1.50 Tea $1.80
Write a program which returns the first non repetitive character in the string?
Can a local variable be volatile in c?
How to implement a packet in C
Explain what is the benefit of using #define to declare a constant?
What tq means in chat?
What does calloc stand for?
How can I generate floating-point random numbers?
By using C language input a date into it and if it is right?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
What is || operator and how does it function in a program?