I'm new to C and I i have an assignment where I have to build a dictionary (Linked List in a way). Basically the user inputs several words,year and their definition this:
Example:
love_#2004#LOVING
trade#2001#_INVEST
etc...
And basically i need a function to scan the definition (Ex: INVEST) and gives me the word trade.
If the definition is related to more than only one word to give me back all the words it relates to.
What sort of a funtion do I need to scan these strings?