Forum: C++ Apr 26th, 2008 |
| Replies: 1 Views: 2,194 There are plenty of classes around that abstract out file systems and directories. They take care of things like path separators, os directory calls, etc. If I remember all the following have... |
Forum: C++ Mar 6th, 2008 |
| Replies: 12 Views: 1,125 You are on the right track. Hopefully this can advance your progress somewhat.
#include <iostream>
#include <fstream>
using namespace std;
void printArray(char array[], int rows, int... |
Forum: C++ Mar 3rd, 2008 |
| Replies: 8 Views: 1,246 Some compilers make assumptions based on the extension type.
Just out of curiosity, if you are following a C tutorial, why is your program written in C++? This is as plain vanilla C++ as one can... |
Forum: C++ Mar 2nd, 2008 |
| Replies: 8 Views: 1,246 I haven't used that compiler so this is a shot in the dark...
Is your file extension .c? I wonder if it is complaining that it is trying to compile a C program but you are using CPP headers? |
Forum: C++ Dec 27th, 2007 |
| Replies: 8 Views: 1,314 So, if I understand this, basically you have a kind of log file that is written out by time stamp but which you need to put into signal order?
If so, it seems like you need something like a map to... |
Forum: C++ Dec 27th, 2007 |
| Replies: 2 Views: 1,117 If you want someone to do your work for you there are other sites where you can hire people. If you want help here then you need to show your efforts and where you are stuck. |
Forum: C++ Dec 27th, 2007 |
| Replies: 2 Views: 1,150 Linux/unix evolved differently than Windows in the sense that no one company runs the show. So there is no one api. You have system calls that interact with the kernel e..g i/o functions, process... |