Answer Posted / ajay
Actually c is a procedural programming language which
cann't face the real world problem. It has some drawback
like a global data is shared by all function and if in a
large program it is find out difficult that which function
uses which data.
On the other hand c++ is an object oriented programming
language which eliminate some pitfall of conventional or
procedural programming language. It is a concept or
approach for designing a new software. It is nothing to do
with any programming language although a programming
language which support the oops concept to make it easier
to implement.
This is the main different between c and c++.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is sizeof array?
How can I dynamically allocate arrays?
how to capitalise first letter of each word in a given string?
With the help of using classes, write a program to add two numbers.
Explain low-order bytes.
What are called c variables?
What is const keyword in c?
What is extern c used for?
What is I ++ in c programming?
How will you declare an array of three function pointers where each function receives two ints and returns a float?
write a c program to calculate sum of digits till it reduces to a single digit using recursion
Is it valid to address one element beyond the end of an array?
Why should I prototype a function?
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
What do you know about the use of bit field?