Why was c++ made?



Why was c++ made?..

Answer / Shivani Bansal

DOS stands for Disk Operating System. It was a family of operating systems popular in the 1980s and 1990s, including MS-DOS (Microsoft Disk Operating System).

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

what is the diff b/n c and c++ a. dynamic scoping b. nested switching c. declaration of variables in any code block d. separation of compilation and linking

2 Answers   Hughes,


Check for Balanced Parentheses using Stack?

1 Answers  


What is near, far and huge pointers? How many bytes are occupied by them?

1 Answers  


What is the exit function in c++?

1 Answers  


When is the destructor called?

1 Answers  


What are the main characteristics of C++ as a programming language?

1 Answers  


What is the difference between object-oriented programming and procedural programming?

1 Answers  


1)#include <iostream.h> int main() { int *a, *savea, i; savea = a = (int *) malloc(4 * sizeof(int)); for (i=0; i<4; i++) *a++ = 10 * i; for (i=0; i<4; i++) { printf("%d\n", *savea); savea += sizeof(int); } return 0; } 2)#include <iostream.h> int main() { int *a, *savea, i; savea = a = (int *) malloc(4 * sizeof(int)); for (i=0; i<4; i++) *a++ = 10 * i; for (i=0; i<4; i++) { printf("%d\n", *savea); savea ++; } return 0; } The output of this two programs will be different why?

5 Answers  


What is "map" in STL?

2 Answers  


What is c++ hiding?

1 Answers  


What does override mean in c++?

1 Answers  


write a corrected statement in c++ so that the statement will work properly. x = y = z + 3a;

1 Answers  


Categories