Answer Posted / tapan pal
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 ? | 1 Yes | 1 No |
Post New Answer View All Answers
What functions are in conio h?
What is nested structure?
What is the difference between variable declaration and variable definition in c?
What is a c token and types of c tokens?
What does char * * argv mean in c?
What does & mean in scanf?
Explain the difference between structs and unions in c?
What's the difference between constant char *p and char * constant p?
show how link list can be used to repersent the following polynomial i) 5x+2
Why we use conio h in c?
Explain what is the most efficient way to store flag values?
Is array a primitive data type in c?
What does a function declared as pascal do differently?
What is data structure in c programming?
Can you add pointers together? Why would you?