Hi
I have been learning C for 2 weeks now and I know basics.
I want to make program which loads 2 text files. Article name would be output filename "Article 1.txt" and Content 1 would be the content. So it will make single file of each article.
Text files structure:
1. File 1
Article names
Article 1 name
Article 2 name
....
2. File 2
Article Content
Content 1
Content 2
...
I would like to know what I have to consider?
Some articles are over 1000 words, can C handle to read them from one line and copy?
Are there any examples?
Or should I consider C++?