What are the classes in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is the best book for c++ beginners?
C++ program output? Explain output of this program. #include <iostream> using std::cout; using std::cin; int main() { cout<<cout<<' '; cout<<cin; return 0; } It prints some address in hexadecimal. what is it?
What is the difference between multiple and multilevel inheritance in c++?
How many different levels of pointers are there?
Should the member functions which are made public in the base class be hidden?
What is a loop? What are different types of loops in c++?
What is a singleton class c++?
What is an Object/Instance?
What is null pointer and void pointer and what is their use?
describe private access specifiers?
Explain differences between new() and delete()?
Write a program to calculate the BMI of a person using the formula BMI = weight/height2.