What is C++ could you enplane me please?
Answer / rama
1)c++ has every thing which was present in c language, and it has some additional features and advantages than c language. so its named as c++..
2) c++ is a object oriented language
3) It follows bottom-up approach in program design.
4) object may communicate with each other through functions.
5) Data is hidden and cannot be accessed by external functions.
6) New data and functions can be accessed by external function.
7) programs are divided into what are known as objects.
8) Emphasis is on data rather than procedure
| Is This Answer Correct ? | 1 Yes | 0 No |
What is the STL?
#define CUBE(x) (x*x*x) main() { int a,b=3; a=cube(b++); printf("%d %d",a,b); } What should be the value of a and b? My calc a=4 but syst a=6 how pls tell me if you know it?
In what scenario does the Logical file and Physical file being used?
What is Constructor
What is stl in oop?
c# support late binding or early binding.
5. Write c++ function that would intake a string and return the number of occurrences of a given character in that sring Ex:- if the word is “Colombo” and count the occurrences of the letter “o” the function would return 3
write a program to convert a decimal number in to its equivalent binary number?
What is a list in c++ stl?
How do I convert a stl file?
what's the difference between abstract class and concreate class? what's the meaning of standard template library(STL)?
Name the different types of stl containers.