Hi,
I'm passing as input to my program: "<param value=s/>"
I use this code:
char character[1];
sscanf(data, "<param value=%c/>", &character);
printf("%c", character);
However the output seems to be "s/>" instead of only "s" char. what's wrong here?