in reply to Re^2: what does goto ""; mean?
in thread what does goto ""; mean?

The difference between "" and "\x00" is that the former is one byte long, whose value is null, while the latter is two bytes long - two nulls.
The character '\0' is the NUL (single L) character. NULL (double L) is a pointer, not a character.

Abigail