i coded a simple program to store data and would like to add a "print out" option. my idea is to load stored data into a array (from a txt file) and subsequently print the content on paper. however, i have no idea how to address a printer (connected via USB) and could not find a tutorial so far...
thx m
This is an OS dependent question, however if you are as new to c++ as you seem, my best recommendation is to finish a book on programming, C++ programming by Malik is what I reccomend, as it teaches you a little C-style followed by a whole lot of information on programming in console.
However if my guess is wrong and your a little more used to programming than you seem then, https://msdn.microsoft.com/en-us/library/windows/desktop/ff819270%28v=vs.85%29.aspx is how you would do so on windows.
If your as new as you are, I'd recommend not trying to print to paper, as you can run into driver issues, buffer issues, and sorts of other issues. What your trying to do, is something that you shouldn't need to do in any job assignment, unless you get some really REALLY bad freelance contract, and if you do, you better be getting paid top dollar for it.