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
Explain heap and queue.
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
What is the use of function overloading in C?
What is structure padding and packing in c?
Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58
Why is c so important?
Describe the difference between = and == symbols in c programming?
Can we assign string to char pointer?
What are linked lists in c?
What is formal argument?
What is a function simple definition?
What are header files? What are their uses?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
what is a function method?give example?
What is #define?