difference between c and c++?
Answer Posted / asri
c is procedure oriented language and gives importance to
procedure that is functions rather than data.c is middle
level language.
c++ is object oriented language and gives importance to
object that is data
c++ is high level language
Is This Answer Correct ? | 393 Yes | 36 No |
Post New Answer View All Answers
I want to write a C++ language program that: 1. Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. The program should work for squares of all side sizes between 1 and 20.
What are the effects after calling the delete this operator ?
What is the use of object in c++?
What it is and how it might be called (2 methods).
When does a 'this' pointer get created?
Mention the storage classes in c++.
Why is swift so fast?
Can union be self referenced?
What does asterisk mean in c++?
Write a function that swaps the values of two integers, using int* as the argument type?
Perform addition, multiplication, subtraction of 2-D array using Operator Overloading.
Describe exception handling concept with an example?
Explain what is oop?
How can I improve my c++ skills?
Is there any difference between int [] a and int a [] in c++?