Can member functions be private?
No Answer is Posted For this Question
Be the First to Post Answer
In how many ways we can initialize an int variable in C++?
1.what is the difference between software & package &application.
Difference between const char* p and char const* p?
What is abstraction in c++?
What is the difference between method overloading and method overriding in c++?
What is the difference between public, private, protected inheritance?
what is difference between static and non-static variables
What are the advantages of C++ programming compared to C programming?
What is the importance of mutable keyword?
Would you rather wait for quicksort, linear search, or bubble sort on a 200000 element array? (Or go to lunch...) a) Quicksort b) Linear Search c) Bubble Sort
What is the difference between object-oriented programming and procedural programming?
There are 100 students in a class. The management keep information in two tables. Those two tables are given like Roll no Name Age 001 ABC 15 002 XYZ 14 and Roll No Subject Marks 001 Math 75 001 Physics 55 002 Math 68 001 Hindi 69 They want the information like this Roll No Name Hindi Physics Math Total 001 ABC 69 55 75 199 002 XYZ 68 74 84 226 And Roll No Suject Highest 001 Math 98 007 Physics 84 021 Hindi 74 All 275 All information is kept in structure in main memory. You have to find last two tables.