I am very new to programming. I am trying to write a program in C++ that converts text file into excel file.
Actually what i want is following my text data:-
0020.49
0020.38
0020.49
0020.37
0020.50
0020.38
0020.50
0020.37
But i want to save it column wise in excel file like that:-
0020.49 0020.38
0020.49 0020.37
0020.50 0020.38
0020.50 0020.37
I am using visual studio 2010. Please tell me how can i do this?