What is the word you will use when defining a function in base class to allow this function to be a polimorphic function?
No Answer is Posted For this Question
Be the First to Post Answer
What is cout flush?
What does getch() do according to the ANSI C++ standard a) Reads in a character b) Checks the keyboard buffer c) Nothing in particular (Its not defined there)
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?
let a,b,c be three integer numbers.write a c++ program with a function void rotate 1()such that a->b->c and c->a.
Do you know about C++ 11 standard?
0 Answers Agilent, ZS Associates,
explain the reference variable in c++?
What is the Diffrence between a "assignment operator" and a "copy constructor"?
How can you quickly find the number of elements stored in a a) static array b) dynamic array ?
Difference between a homogeneous and a heterogeneous container
Write about the scope resolution operator?
Write bites in Turbo c++ Header ("Include") Files.
I was a c++ code and was asked to find out the bug in that. The bug was that he declared an object locally in a function and tried to return the pointer to that object. Since the object is local to the function, it no more exists after returning from the function. The pointer, therefore, is invalid outside.