Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #44.2K
~1K People Reached
Favorite Forums
Favorite Tags
c++ x 4

3 Posted Topics

Member Avatar for thr

I would also suggest the wxWidgets library. I have used this extensively over the last 10 years and find the code extremely well designed, well documented, and robust. It is also free and you get all the source code. There a free (and commercial) GUI designer tools available. Have a …

Member Avatar for myk45
0
212
Member Avatar for lou38

[code=c] // NOTE: No error checking on input values // #include<iostream> // use limits.h to get minimum and maximum values #include "limits.h" using namespace std; int main(int argc, char* argv[]) { int iCount = 0; // set up initial comparison values int iMax = INT_MIN; // ALMOST guaranteed to be …

Member Avatar for WaltP
0
459
Member Avatar for Annettest

[QUOTE=;] An alternative is to turn your array row/column integer into a linear value and then back again using (for example) mod and div. As an example, if your source array consists of 4 rows x 6 columns, then you can iterate using a for loop across the columns then …

Member Avatar for chief427
0
767

The End.