Will the following program execute?
No Answer is Posted For this Question
Be the First to Post Answer
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 declare an array without a size in c++?
Does a derived class inherit or doesn't inherit?
What is vector pair in c++?
wrong statement about c++ a)code removably b)encapsulation of data and code c)program easy maintenance d)program runs faster
What is RTRT tool?can it be used for automation?can it work on packet PC?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?
diff between pointer and reference in c++?
Is c++ still in demand?
What is malloc in c++?
What are activex and ole?
Can a constructor throw a exception? How to handle the error when the constructor fails?