I have a file in below format
mon 01/01/1000(TAB)hi hello(TAB)how r you
Is there any way to read the text in such a way to use '\t'
alone as delimiter (and not space)?
So sample output can be,
mon 01/01/1000
hi hello
how r you
I couldn't use fscanf()
, since it reads till the first space only.