I'm trying to get this command into my LaTeX document but it causes the compiler to fail, saying "Missing \begin{document}":
\newcommand{\C*}{\mathbb{C} \setminus \lbrace 0 \rbrace}
I have also tried using \C0 instead of \C* thinking the asterisk might cause an issue, but to no change in the error message. The error message also says I can't use \mathbb{.} outside math mode, which I am not trying to do. Using \newcommand{\CC}{\mathbb{C}} is working fine in my document, I don't understand the difference to be honest and thus I can't figure out how to fix the issue.

\C*or\C0– David Carlisle May 12 '18 at 14:28\mathbboutside of math mode. Fixing the first error will not throw LaTeX off the wagon. – Johannes_B May 12 '18 at 14:30