Hello,
gcc 4.4.2
I have the following code:
char channels[] = "NumberOfChannel = [2]";
sscanf(channels, "%*[^=]= %d", &chan);
I am wondering what this means. As far as I can tell. It is ignoring the equals sign.
'^ ignore the character ='
Would that be correct?
Many thanks,