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 are the preprocessor categories?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
What is scope rule of function in c?
What is the difference between a free-standing and a hosted environment?
Tell me with an example the self-referential structure?
What is the c language function prototype?
What is a program flowchart and explain how does it help in writing a program?
Write a Program to find whether the given number or string is palindrome.
What is difference between structure and union?
how many errors in c explain deply
Differentiate between functions getch() and getche().
What is the time and space complexities of merge sort and when is it preferred over quick sort?
What is the modulus operator?
What are global variables and explain how do you declare them?
Can true be a variable name in c?