Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #27.9K
Ranked #3K
~1K People Reached
Favorite Forums
Favorite Tags
c++ x 7

6 Posted Topics

Member Avatar for raniajay

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.

Member Avatar for arashyjrt
0
137
Member Avatar for Barefootsanders

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 something: Boost, ACE POCO, QT. On Linux you probably want to take a look at "inotify", which gives …

Member Avatar for CubedStooge
0
142
Member Avatar for jeffige

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?

Member Avatar for jeffige
0
344
Member Avatar for hyperzero4

You are on the right track. Hopefully this can advance your progress somewhat. [code=cplusplus] #include <iostream> #include <fstream> using namespace std; void printArray(char array[], int rows, int cols) { for (int i = 0; i < rows; ++i) { for (int j = 0; j < cols; ++j) { cout …

Member Avatar for lAmoebal
0
113
Member Avatar for BalaKrish

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 group the data where the keys are the signals …

Member Avatar for BalaKrish
0
109
Member Avatar for Zeking

[QUOTE=Zeking;499201]Hey there, I have been working with some functions from windows API and now I need to find similar set of functions for Linux. Actually I need functions for Linux that will pretty much do the same or similar thing. I have been searching on google trying "Linux API" , …

Member Avatar for Duoas
0
209

The End.