What will the value of the answer variable be after the code segment below has been run.
int answer = 5;
int number10 = 14, number39 = 8;
answer += number10 * number39;
1
Expert's answer
2021-11-16T18:35:55-0500
usingnamespacestd;
//What will the value of the answer variable be after the code segment below has been run.intmain()
{
int answer = 5;
int number10 = 14, number39 = 8;
answer += number10 * number39;
cout<<"\n\tanswer = "<<answer;
return(0);
}
"assignmentexpert.com" is professional group of people in Math subjects! They did assignments in very high level of mathematical modelling in the best quality. Thanks a lot
Comments