- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
4 Posted Topics
Hey guys, what i'm basically trying to do in this code is to write an array which is automatically written to a txt file in the order I have shown below, however, I not only get this error [code] --------------------Configuration: testmtl - Win32 Debug-------------------- Linking... LIBCD.lib(crt0.obj) : error LNK2001: unresolved … | |
Hey guys i'll show the code first then explain my problem: [code=c] Class A { /*Variables required by A, B, C and D */ /*functions required by B and C*/ }; Class B { /*some of it's own functions and variables*/ }; Class C { /*some of it's own functions … | |
Re: or you could use getch: [code] #include <conio.h> getch(); [/code] cin.get() is supported in the standard <iostream> header file, good luck! | |
Re: If by file you mean text file, all it seems to require is: * fstream * if and else * while loop Read up on these topics (they should really be all your need), write an algorithm and tell us what you think, we can answer your questions once you … |
The End.