14,966 reputation
41232
bio website
location United States
age 46
visits member for 1 year, 2 months
seen 12 hours ago
stats profile views 1,744

Just some guy that has picked up a few things about software engineering.


20h
comment File template C++ Visual Studio 2012
Though I've not done so myself, I would think a simple Visual Studio Add-In would make something like this fairly simple, if not already done for you by MS and one of their multitude of add-ins.
2d
comment Eclipse debugging doesn't start at beginning of main?
First, are you turning off optimizations (-O0)? You probably should. Second, make sure the code you're debugging is actually up-to-date with the binary being executed?
2d
comment C finding maximum number in a row of 2D array and replacing it with elements in the upper triangle
Any particular reason you're not determining the maximum values during the load loop-set rather than trying to do it afterward?
Jun
15
comment ReadFile named pipe after client closed other end
OK, and check your client to see that it is calling FlushFileBuffers() before disconnecting the pipe. (which it should be doing with DisconnectNamedPipe() before CloseHandle()).
Jun
15
comment ReadFile named pipe after client closed other end
You sure you're not calling CreateNamedPipe() ? CreatePipe() takes considerably fewer parameters.
Jun
12
comment Malloc/free errors but I'm not using pointers
Did you run both debug and release under Valgrind? I would strongly suggest doing so. it looks like you're either walking out of bounds somewhere or writing to freed data from a previous allocation and corrupting the heap, even if you don't realize it.
Jun
12
comment Sort orderbook when prices are floats
If it were at all possible, I would strongly suggest you use ints and perform your pricing comparing cents (or whatever your currency is). In other words, your first suggestion of using prices as integers would be preferred if you can muster it. Floating point with monetary comparisons is like oil and water.
Jun
12
comment Read whitespaces with fscanf
Given the confines of the intended outcome then, I would likely not use fscanf at all, rather just to fgets(), put a pointer at the last char, and walk backward until BOS or it is no longer a digit-char. I like BLUE's part1-answer below, but it relies on the whitespace separator to actually be a space; a tab (or worse, no separator at all) hoses the algorithm.
Jun
12
comment Read whitespaces with fscanf
possible duplicate of Can fscanf() read whitespace?
Jun
11
comment Symbol Visibility in Windows
@Mecki Thank you SO much for that. I really need to spend more time on the option-charts of gcc.
Jun
10
comment Declare large array on Stack
I don't suppose you can use std::vector<double> ar(4200000); ? The rest uses just regular array vernacular for indexing, etc.
Jun
7
comment Operator= and copy c'tor
Write a 10 line class+program and find out?
Jun
5
comment Using fstreams throws an access violation after main returns
Apart from being a little different than what I would do (std::string line and while (std::getline(f, line)) for the loop condition, f.eof() is almost never what you want to do), this looks ok (esp the latter). You say the exception is after main() returns, but don't bother showing us what is in main() on either side of this proc call. Please post a SSCCE including a main() that reproduces the problem?
Jun
4
comment Dividing 2d array into all possible nxn squares
You also left out the 1x1 matrices (of which there are 9 in your sample).
Jun
3
comment Sort an array based on a tuple of 4 indices in C
+1 completely concur (as if that wasn't obvious from my prior comment). Stressing the strict weak order of the composite 3rd and 4th column value is important, but it looks like your updating to reflect that.
Jun
3
comment Sort an array based on a tuple of 4 indices in C
How is this different than sorting on a virtual key of a 3rd-column and 4th column composed entity? This hardly seems like it should take days to consider, unless I'm completely missing something (which wouldn't be the first time). A properly written qsort() comparator and an entity-width of four "values" (you never specified whether they're int, unsigned int, short, etc.) would/should make short work of this.
Jun
2
comment Sieve of Eratosthenes bit array
You may want to clarify, btw. You want up to 2,147,483,647 primes, or do you want primes up to 2,147,483,647. The two things are very different.
Jun
2
comment Sieve of Eratosthenes bit array
"Also consider leaving out the even numbers, almost none of them are prime." More accurately, only one of them is prime, and its already known and can be discounted. Interesting choice of wording.
May
31
comment Representation of C string at memory and comparison
+1 And as far as that goes *p != 0 or even just *p would be sufficient.
May
31
revised Queue just pops out first and last element
added 491 characters in body