Given two integer variables num and highest, write a statement that gives highest the same value that num has.

LANGUAGE: C++

CHALLENGE:

Given two integer variables num and highest, write a statement that gives highest the same value that num has.

SOLUTION:



highest = num;