I\'m currently writing a little program but I keep getting this error when compiling
error: empty character constant
I realize i
You can use c[i]= '\0' or simply c[i] = (char) 0.
c[i]= '\0'
c[i] = (char) 0
The null/empty char is simply a value of zero, but can also be represented as a character with an escaped zero.