In a similar fashion to my 2 previous tutorials:
http://thecodingtutorials.blogspot.com/2013/01/simple-file-manipulation-in-console.html
http://thecodingtutorials.blogspot.com/2013/01/character-arrays-in-c.html
This tutorial will show a C++ program that takes input from a file called "input.txt" and outputs it to "output.txt", only this time, it will take input like this:
1234567
1234567
1234567
and output it with commas after the third digit on each line like this:
123,4567
123,4567
123,4567
*** View this blog with HTTP instead of HTTPS to see the code formatted nicely. ***
Showing posts with label console. Show all posts
Showing posts with label console. Show all posts
Thursday, March 7, 2013
Wednesday, January 16, 2013
Simple File Manipulation in a Console Application with C++
1234567
1234567
1234567
and output it to a file called "output.txt" that is formatted like this (standard CSV (Comma Separated Values) format, except with 25 columns per row maximum):
1234567,1234567,1234567,...(25 times)
1234567,1234567,1234567,...(25 times)
1234567,1234567,1234567,...(18 times)
Creating an Empty C++ Console Application in Visual Studio 2010
Subscribe to:
Posts (Atom)