A normal variable is set by simply assigning it a value; note that no whitespace is allowed around the =:
HOME=c
An environment variable is a regular variable that has been marked for export to the environment.
export HOME
HOME=c
You can combine the assignment with the export statement.
export HOME=c