Write a statement that declares an int variable age and initializes it to 15.

LANGUAGE: C++

CHALLENGE:

Write a statement that declares an int variable age and initializes it to 15.

SOLUTION:

int age = 15;

Posted in ,