I\'m currently writing a little program but I keep getting this error when compiling
error: empty character constant
I realize i
The empty space char would be ' '. If you're looking for null that would be '\0'.
' '
'\0'