How long does this loop run:
for(int x=0; x=3; x++)
a) Never
b) Three times
c) Forever
Answer Posted / amrutha
a)Never
Eric is fooler than Premalatha
| Is This Answer Correct ? | 3 Yes | 13 No |
Post New Answer View All Answers
Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);
Snake Game: This is normal snake game which you can find in most of the mobiles. You can develop it in Java, C/C++, C# or what ever language you know.
Describe the process of creation and destruction of a derived class object?
What are the c++ access specifiers?
Comment on local and global scope of a variable.
C is to C++ as 1 is to a) What the heck b) 2 c) 10
What is the full form of stl in c++?
What is a vector c++?
What are friend classes?
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.
What is virtual base class?
What is long in c++?
Explain this pointer?
Perform addition, multiplication, subtraction of 2-D array using Operator Overloading.
Mention the ways in which parameterized can be invoked.