Answer Posted / chhaya
about C language:=
1) it is procedural laguage i.e. real word entity write in
procedur form i.e. set of instruction
2) it is bacis langues
3)execution of programe is top to bottom.
4)it does not handle
overloading,encapsulation,inheritance,constuctor,distructor
these concept
about C++:=
1)it is object oriented language i.e here real word entity
can be conver into object.
2)c++ is extend from C language
3) it aontain new concept like
overloading,encapsulation,inheritance,constuctor,distructor
etc
4)it follow all the sytanx of c
5) Execution of program is bottom to top.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is derived datatype in c?
What does the format %10.2 mean when included in a printf statement?
Why header file is used in c?
What is the significance of an algorithm to C programming?
What are loops in c?
What is define directive?
Write a program to print numbers from 1 to 100 without using loop in c?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
Can a variable be both static and volatile in c?
What are header files and what are its uses in C programming?
How can you draw circles in C?
What is a structural principle?
What is wild pointer in c with example?
Explain what is the difference between the expression '++a' and 'a++'?
Write a code to determine the total number of stops an elevator would take to serve N number of people.