What and all can a compiler provides by default?
Answer Posted / sandy
Also operator "&"
class Test {};
int main()
{
Test t;
Test *ptr = &t;
return 0;
}
| Is This Answer Correct ? | 4 Yes | 5 No |
Post New Answer View All Answers
What 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
What is the difference between equal to (==) and assignment operator (=)?
How do you generate a random number in c++?
Which programming language is best?
What ANSI C++ function clears the screen a) clrscr() b) clear() c) Its not defined by the ANSI C++ standard
What is the need of a destructor?
Difference between a homogeneous and a heterogeneous container
What is namespace & why it is used in c++?
What do you mean by persistent and non persistent objects?
Explain stack & heap objects?
What does it mean to declare a destructor as static?
What is c++ best used for?
What does the following code do: int c=0; cout< a) Undefined *Updated* b) 01 c) 00
What is a v-table?
What do you mean by translation unit?