What is the output of the following program? Why?
No Answer is Posted For this Question
Be the First to Post Answer
Does c++ have a hash table?
What is the difference between the functions rand(), random(), srand() and randomize()?
Explain how functions are classified in C++ ?
Write a program in c++ to print the numbers from n to n2 except 5 and its multiples
What are the extraction and insertion operators in c++? Explain with examples.
If dog is a friend of boy and boy is a friend of house, is dog a friend of house?
What is the full form of stl in c++?
What is while loops?
What is pointer to array in c++?
Why for local variables the memory required to hold the variable is allocated from the program stack and for new its allocated from the heap?
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 you please explain the difference between static and dynamic binding of functions?