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?
Which operator cannot overload?
without if else statement can be written ah
If we declare two macro with the same identifier without doing undef the first, what will be the result? eg: #define MAX_SIZE 100 #define MAX_SIZE 200 int table1[MAX_SIZE];
Explain "const" reference arguments in function?
Why is main function important?
What is abstraction c++?
What problem does the namespace feature solve?
What is string in c++ programming?
Explain the differences between private, public and protected and give examples.
What is tellg () in c++?
What is the Diffrence between a "assignment operator" and a "copy constructor"?
What is the role of static keyword for a class member variable?