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)
791What ANSI C++ function clears the screen a) clrscr() b) clear() c) Its not defined by the ANSI C++ standard
791What number of digits that can be accuratly stored in a float (based on the IEEE Standard 754)? a) 6 b) 38 c) An unlimited number
1006Which of the following is not a valid declaration for main() a) int main() b) int main(int argc, char *argv[]) c) They both work
834Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);
825True or false, if you keep incrementing a variable, it will become negative a) True b) False c) It depends
2096If you push the numbers (in order) 1, 3, and 5 onto a stack, which pops out first a) 1 b) 5 c) 3
1084Post New C++ General Questions
If all is successful, what should main return a) 0 b) 1 c) void
How can you quickly find the number of elements stored in a static array?
Can I make ios apps with c++?
what kind of projects are suitable for c and c++
Can char be a number c++?
How can I disable the "echo" feature?
Describe the advantage of an external iterator.
What is std :: flush?
What is the use of endl in c++?
Write a program using merge () function to combine the elements of array x[ ] and y[ ] into array z[ ].
What flag means?
What apps are written in c++?
What is increment operator in c++?
What is the difference between the compiler and the preprocessor?
Why is c++ not purely object oriented?