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;
Write a statement that declares an int variable age and initializes it to 15.
int age = 15;