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
Differentiate between Macro and ordinary definition.
What do you understand by friend-functions? How are they used?
Can we assign string to char pointer?
Give me the code of in-order recursive and non-recursive.
Can we declare variables anywhere in c?
What is the most efficient way to count the number of bits which are set in an integer?
What is memory leak in c?
What are lookup tables in c?
What is auto keyword in c?
Explain what is the concatenation operator?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
What is an expression?
Explain what are linked list?
Why header files are used?
Do you know null pointer?