Can someone explain the difference between a static and const variable?
static
const
Constants can't be changed, static variables have more to do with how they are allocated and where they are accessible.
Check out this site.