Skip to content

Latest commit

 

History

7 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Alternative_combiner

This Alternative combiner is basically a C++ code, which has the sole purpose of combining two txt files line by line alternatively in a way such as:

file1.txt
line1
line2
line3
line4
_______________

file2.txt
a
b
c
d


 The result ( file3.txt )
 
 line1
 a
 line2
 b
 line3
 c
 line4
 d
 .
 
 
 
 
 
 	# The code is kinda messy, but does the job. Feel free to use and alter as you like.

About

C++ code that combines two text files into one file, by taking the first line from the first file, then the first from the second file, then the second from the first, all the way to the end alternatively.

Resources

Stars

2 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages