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 are actual arguments?
What does printf does?
Is Exception handling possible in c language?
Dont ansi function prototypes render lint obsolete?
What are the features of the c language?
What is actual argument?
What are the standard predefined macros?
write a program to find the given number is prime or not
What is return in c programming?
Why isnt there a numbered, multi-level break statement to break out
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
What will the preprocessor do for a program?
What is clrscr ()?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?