By default, E is used to represent the Euler's number in Mathematica. I need the variable E to behave just like other undefined variables in my code. When I run the commands
Unprotect[E]
Clear[E]
the variable E remains black, which means it still holds a value. Next, If I run
1.0E
Mathematica gives
2.71828
How can I completely clear this predefined value?