Forum: C++ Mar 24th, 2004 |
| Replies: 8 Views: 5,698 Yeah exactly what infamous said it will be in you Debug folder.
@infamous:It may have been that way in previous versions of visual studio, i'm not sure never had it before, and now I get vs.net... |
Forum: C++ Mar 23rd, 2004 |
| Replies: 8 Views: 5,698 Debug mode is standalone, the exe just contains debugging information, that allows you to step through the code when you set a breakpoint inside the IDE. Even Academic versions allow you to create... |
Forum: C++ Mar 23rd, 2004 |
| Replies: 8 Views: 5,698 To do this, create a new project (workspace if using vc++ 6) add a new code file, paste your code in there, compile (I believe F7 in vc++ 6, or ctrl-shift-B in vs.net), the exe will be in your... |
Forum: C++ Mar 23rd, 2004 |
| Replies: 2 Views: 4,185 Just a few things about this code, whoever wrote doesn't really understand completely what is going on. The header fstream is for file i/o, which isn't used in this program at all, also cout, and... |