What are the various access specifiers in c++?


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

Post New Answer

More C++ General Interview Questions

What is purpose of abstract class?

0 Answers  


If you don’t declare a return value, what type of return value is assumed?

0 Answers  


How can I learn c++ easily?

0 Answers  


What is the difference between ++ count and count ++?

0 Answers  


Why do we use using namespace std in c++?

0 Answers  






string somestring ; Which of the following choices will convert a standard C++ string object "somestring" to a C string? a) Copy.somestring () ; b) somestring.c_str () c) &somestring [1] d) std::cstring (somestring) e) (char *) somestring

1 Answers   Quark,


What is a vector c++?

0 Answers  


What is iterator c++?

0 Answers  


What is an action class?

1 Answers  


Find the second maximum in an array?

12 Answers   HCL,


Can the operator == be overloaded for comparing two arrays consisting of characters by using string comparison?

0 Answers  


Assume an array of structure is in order by studentID field of the record, where student IDs go from 101 to 500. Write the most efficient pseudocode algorithm you can to find the record with a specific studentID if every single student ID from 101 to 500 is used and the array has 400 elements. Write the most efficient pseudocode algorithm you can to find a record with a studentID near the end of the IDs, say in the range from 450 to 500, if not every single student ID in the range of 101 to 500 is used and the array size is only 300

0 Answers  


Categories