Answer Posted / vantees
C
1)Structured programing.
2)In build functions are used to allocate the memory dynamically.
3)Struct members are public by default.
4)Data and functions are separated.
C++
1)Object oriented programing.
2)New ,Delete operators are used to allocate the memory dynamically
3)class members are private by default.
4)Together data and functions into single entity.
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
What is auto keyword in c?
What is time complexity c?
What is the difference between text and binary modes?
What is header file in c?
What is wrong with this declaration?
Explain high-order and low-order bytes.
Which built-in library function can be used to match a patter from the string?
What is masking?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
What is pre-emptive data structure and explain it with example?
In c language can we compile a program without main() function?
Difference between linking and loading?
What is the data segment that is followed by c?
What is difference between function overloading and operator overloading?
When is a void pointer used?