0
votes
2answers
175 views
std::map find doesn’t work properly
std::map.find() is intended to return an map::iterator to an element it found if there is some or to the end() if not. I get BadPtr returned to me. The exactly same construct works fine in the other …
3
votes
3answers
115 views
Stdlib itoa function
Hi,
I searched on internet and saw a lot of code that uses itoa() function & they claimed that this function is in stdlib.h
I'm using 2 versions of GCC right now:
(GCC) 4.2.4 (Ubuntu …
2
votes
2answers
136 views
Why does stdlib.h’s abs() family of functions return a signed value?
The negative implication of this is noted in the man page:
NOTES
Trying to take the absolute value of the most negative integer is
not
defined.
What's the reasoning behind …
1
vote
7answers
357 views
Infinite loop on EOF in C++
This code works as desired for the most part, which is to prompt the user for a single character, perform the associated action, prompt the user to press return, and repeat. However, when I enter ^D …
2
votes
2answers
226 views
Ambiguous overload call to abs(double)
I have the following C++ code:
#include <math.h>
#include <cmath.h> // per http://www.cplusplus.com/reference/clibrary/cmath/abs/
// snip ...
if ( (loan_balance < 0) && …
0
votes
2answers
74 views
Where is the ruby standard library directory placed on a Mac?
I want to read some ruby code. And I think this is the good place to start dig in. But I cant find it.
0
votes
6answers
185 views
I’m getting compile errors in the standard library. What’s up?
I'm trying to compile an unspecified piece of software, and I'm getting errors in the standard headers such as stdio.h. The errors are mostly undeclared identifiers such as _In_. IntelliSense finds …
1
vote
6answers
390 views
Group sorting a vector in C++
I have a std::vector full of objects, each with a numeric group identifier associated with them. The object also has properties such as "size" and "name".
I need to be able to sort the vector of …
3
votes
4answers
527 views
Is os.popen really deprecated in Python 2.6?
The on-line documentation states that os.popen is now deprecated. All other deprecated functions duly raise a DeprecationWarning. For instance:
>>> import os
>>> [c.close() for c in …
0
votes
5answers
124 views
Is there a strtol equivalent that does not require a null-terminated string?
Hi,
Is there a standard C function similar to strtol which will take a char* and a length for a non-null-terminated string?
I know that I could copy out the string into a null-terminated region, but …
0
votes
2answers
131 views
Error in qsort function in Programming Pearls?
Hello, is it just me or this code in Programming Pearls is wrong (quicksort wants 2 const voids, no?) If so, is my solution right? Apologies, just learning...
int wordncmp(char *p, char* q)
{ int n …
1
vote
4answers
146 views
Scanning variable number of ‘fields’ from a text file
I'd like to scan a variables that form vectors from white space delimited text file and the stumbling block (all to often for me) is lack of elegance.
Currently my scanning code requires delineating …
3
votes
5answers
427 views
Are strtol, strtod unsafe?
It seems that strtol() and strtod() effectively allow (and force) you to cast away constness in a string:
#include <stdlib.h>
#include <stdio.h>
int main() {
const char *foo = "Hello, …
1
vote
5answers
1k views
Trouble reading a line using fscanf()
I'm trying to read a line using the following code:
while(fscanf(f, "%[^\n\r]s", cLine) != EOF )
{
/* do something with cLine */
}
But somehow I get only the first line every time. Is this a …
4
votes
3answers
359 views
Evil code from the python standard library
So, we have had this: http://lucumr.pocoo.org/2009/3/1/the-1000-speedup-or-the-stdlib-sucks. It demonstrates a rather bad bug that is probably costing the universe a load of cycles even as we speak. …
