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?
Incase of a function declaration, what is extern means?
How to write a program such that it will delete itself after exectution?
What is a protocol class?
Disadvantages of c++
What is the difference between Char a[ ]=”string” and char *a=”String”
Why ctype h is used in c++?
Difference between Top down and bottom up approaches for a given project ?
14 Answers BSNL, CSC, HCL, HP, IIT, Infosys, Siemens,
What is the auto keyword good for in c++?
Comment on local and global scope of a variable.
What is the difference between the functions rand(), random(), srand() and randomize()?
How can I improve my c++ skills?
Explain the problem with overriding functions