when working with strings, I can check if it has a value by doing something like
if (s == "")
but how do I accomplish this with integers? I thought maybe initializing to a dummy value like 0 or -1, but what if those values might be valid? should I use something like -999?
I'm just wondering what the standard practice is on this situation.
thanks!