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
Why is structure important for a child?
c program to compute AREA under integral
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
How can you find the exact size of a data type in c?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
What's the difference between constant char *p and char * constant p?
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
What is && in c programming?
Why is void main used?
What is difference between array and structure in c?
State two uses of pointers in C?
What is static and auto variables in c?
what type of questions arrive in interview over c programming?
What is a buffer in c?
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?