Write a statement to set the value of ansequal to the value of num plus 5.

LANGUAGE: C++

CHALLENGE:

Write a statement to set the value of ansequal to the value of num plus 5. (These variables  have already  been declared  and num has already  been initialized .)

SOLUTION:



ans = num + 5;