Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
~844 People Reached
Favorite Forums
Favorite Tags
c++ x 11
oop x 7

4 Posted Topics

Member Avatar for zaneulhaq

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 …

Member Avatar for Schol-R-LEA
0
265
Member Avatar for zaneulhaq

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 …

Member Avatar for Stefano Mtangoo
0
408
Member Avatar for jmcginny5

or you could use getch: [code] #include <conio.h> getch(); [/code] cin.get() is supported in the standard <iostream> header file, good luck!

Member Avatar for zaneulhaq
0
100
Member Avatar for c++prog

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 …

Member Avatar for zaneulhaq
0
71

The End.