Answered step by step
Verified Expert Solution
Question
1 Approved Answer
I want to use sscanf to get the information from the line content up to the char before :. the first char of the line
I want to use sscanf to get the information from the line content up to the char before ":". the first char of the line is "\t". I used the below one but captured the ":" too. Can advise how I can capture the content before ":"
sscanf(line, "%s%*[\t]%*[^:]", dict[i].word[j].type);
If the content of line array is
then by using the above sscanf, it will capture "TYPE:" into the dict[i].word[j].type. But i want to just capture "TYPE" instead of "TYPE:"
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started