Which of these are valid ways to declare a variable?

string name;int age;double height;auto speed;

Good work! We declare a variable with a type and a name. If we want to use the auto keyword, we have to initialize the variable.

Uh oh! We declare a variable with a type and a name. If we want to use the auto keyword, we have to initialize the variable.