What is std::move?
Answer / nashiinformaticssolutions
std::move enables transfer of resources from one object to another, facilitating move semantics.
| Is This Answer Correct ? | 0 Yes | 0 No |
What are the advantages of using a pointer?
What is a loop? What are different types of loops in c++?
What is the Maximum Size that an Array can hold?
55 Answers Adobe, FutureSoft, HCL, Infosys, Satyam, TCS, Wipro,
What are the main features of c++?
What is the syntax for a for loop?
Can a constructor return a value?
Distinguish between a # include and #define.
class HasStatic { static int I; }; Referring to the sample code above, what is the appropriate method of defining the member variable "I", and assigning it the value 10, outside of the class declaration? a) HasStatic I = 10; b) int static I = 10; c) static I(10); d) static I = 10; e) int HasStatic::I = 10;
What is a literal in c++?
What can I use instead of namespace std?
an operation between an integer and real always yeilds a) integer result b) real result c) float result
What is optimization in c++? when using volatile.optimization is not possible..what does this mean?