When does the c++ compiler create temporary variables?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

What are the defining traits of an object-oriented language?

0 Answers  


class Foo { const int x; protected: Foo(int f); ~Foo(); }; Foo f; Referring to the sample code above, why will the class declaration not compile? a) The variable x is const. b) The destructor is protected. c) The destructor is not public. d) The constructor is protected. e) There is no default constructor.

5 Answers   Quark,


How can a struct in c++ differs from a struct in c?

0 Answers  


How come you find out if a linked-list is a cycle or not?

0 Answers  


Consider a c++ template funtion template<class T> T& Add(T a, T b){return a+b ;} if this function is called as T c = Add("SAM", "SUNG"); what will happen? What is the problem in the template declaration/ How to solve the problem.

7 Answers   LG, Samsung,






What is lambda in c++?

0 Answers  


What is iterator c++?

0 Answers  


Tell me an example where stacks are useful?

0 Answers  


Explain the term memory alignment?

0 Answers  


What are features of c++?

0 Answers  


What is a dangling pointer in c++?

0 Answers  


Is java a c++?

0 Answers  


Categories