How did c++ get its name?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

what is static function

2 Answers   Patni,


What are the types of STL containers?

4 Answers  


What is data structure in c++?

0 Answers  


Why do C++ compilers need name mangling?

3 Answers   Lucent,


class basex { int x; public: void setx(int y) {x=y;} }; class derived : basex {}; What is the access level for the member function "setx" in the class "derived" above? a) private b) local c) global d) public e) protected

3 Answers   Quark,


Given an array of size N in which every number is between 1 and N, determine if there are any duplicates in it. You are allowed to destroy the array if you like. [ I ended up giving about 4 or 5 different solutions for this, each supposedly better than the others ].

1 Answers  


Which software is best for c++ programming?

0 Answers  


what is multi-threading in C++?

0 Answers  


Why do we use vector in c++?

0 Answers  


If you had the following code: int x = 23; int *y; y = &x; The instruction y++; does what?

2 Answers  


What is an adjust field format flag?

0 Answers  


What is the function of I/O library in C++ ?

0 Answers   HCL,


Categories