What are friend classes?
No Answer is Posted For this Question
Be the First to Post Answer
What is the basic structure of a c++ program?
How to tokenize a string in c++?
What is the use of endl in c++?
Do class declarations end with a semicolon? Do class method definitions?
Why is c++ not purely object oriented?
What is setbase c++?
What is function overriding in c++?
int age=35; if(age>80) {Console.WriteLine("Boy you are old");} else {Console.WrieLine("That is a good age");}
What is a local reference?
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?
Can non-public members of another instance of the class be retrieved by the method of the same class?
Why we use #include iostream in c++?