Write a statement to set the value of num to 4 (num is a variable that has already been declared ).
LANGUAGE: C++
CHALLENGE:
Write a statement to set the value of num to 4 (num is a variable that has already been declared ).
SOLUTION:
num = 4;
Write a statement to set the value of num to 4 (num is a variable that has already been declared ).
num = 4;