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?
Discuss the possibilities related to the termination of a program before entering the mainq method?
How is data hiding achieved in c++?
What does new do in c++?
What are the uses of static class data?
why we cant create array of refrences
Write a note about the virtual member function?
What is the use of endl in c++?
What is the iunknown interface?
What is expression parser in c++
Which format specifier is used for printing a pointer value?
Write a program to calculate the BMI of a person using the formula BMI = weight/height2.
What does scope resolution operator do?