void test(int && val)
{
val=4;
}
void main()
{
test(1);
std::cin.ignore();
}
Is a int is created when test is called or by default in c++ literals are int type?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Note that your code would compile only with C++11 compiler.
When you pass an integral literal, which is by default of
inttype, unless you write1L, a temporary object of typeintis created which is bound to the parameter of the function. It’s like the first from the following initializations: