Write a statement that declares an int variable presidentialTerm and initializes it to 4.

LANGUAGE: C++

CHALLENGE:

Write a statement that declares an int variable presidentialTerm and initializes it to 4.

SOLUTION:



int presidentialTerm;
presidentialTerm = 4;