What is the difference between a member variable and a local variable?

A local variable is the variable you declare in a function.

A member variable is the variable you declare in a class definiton.

Leave a Comment