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)
No Answer is Posted For this Question
Be the First to Post Answer
what is Loop function? What are different types of Loops?
Explain "passing by value", "passing by pointer" and "passing by reference" ?
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?
What is the use of 'using' declaration in c++?
Which programming language is best to learn first?
What are the various situations where a copy constructor is invoked?
what is VOID?
In which memory a class gets stored(in heap /in stack)? And why??
Describe about storage allocation and scope of global, extern, static, local and register variables?
If all is successful, what should main return a) 0 b) 1 c) void
Write the program for fibonacci in c++?
Can I have a reference as a data member of a class? If yes, then how do I initialise it?