24.09.2016, 17:50
sscanf(something, "s[128]", something);
You need to add [value] to the format field on every "s", which represents strings. Value is length (e.g. [128] - s[128])
You need to add [value] to the format field on every "s", which represents strings. Value is length (e.g. [128] - s[128])