You do get partial results;
sscanf("hej,hopp", "%s,%s,", string x, string y)will give you "hej" in x and leave y uninitialized. I would say that is a partial result.
Marcus Agehall (Roxen IS) @ Pike (-) developers forum Fri, 19 Dec 2008 06:00:09 -0800
You do get partial results;
sscanf("hej,hopp", "%s,%s,", string x, string y)will give you "hej" in x and leave y uninitialized. I would say that is a partial result.