Search Results

1
vote

Python for C++ Developers

C# and Java are seen as cleaner replacements for C++ in many application areas so there is often a "migration" from one to the other - which is why there are books available. Python and C++ …
2
votes

Algorithm for finding the smallest power of two that’s greater or equal to a given value

You don't really say what you mean by "better algorithm" but as the one you present is perfectly clear (if somewhat flawed), I'll assume you are after a more efficient algorithm. Larry Grit …
1
vote

What is the difference between Java and C++?

I love c++ but unless you absolutely need to use c++ then use something else. When you need to use c++ then you will know the difference, Grasshopper. (hint do not write device drivers, vid …
3
votes

Testing pointers for validity (C/C++)

Firstly, I don't see any point in trying to protect yourself from the caller deliberately trying to cause a crash. They could easily do this by trying to access through an invalid pointer themselve …
1
vote

When to use assembly language to debug a c/c++ program?

In some circumstances you have no choice but to revert to assembler. If your system crashes and all you have is a core dump or stack trace with few symbols then staring at the high level source cod …
0
votes

C++ multiline string literal

const char * myreply = "I don't really" "understand what" "your problem is."; …
2
votes

Filter C++ through a perl script?

GCC allows you to use your own preprocessor. You could set your script as the preprocessor then run the output through cpp (the normal gcc pre-processor). Look at the gcc manual for -B and -no-inte …
1
vote

Are there good Patterns/Idioms for Data Translation/Transformation?

Years ago I would have immediately said look at Bison http://www.gnu.org/software/bison/ or Yacc but I haven't done anything like thi …
0
votes

static const vs const in a function that repeatedly called

For a basic type, such as an integer value, then I would pigeon hole the use of static as a "premature optimisation" unless you have done some benchmarking and taken into account the various trade …
6
votes

What’s the best way to get the length of the decimal representation of an int in C++?

numdigits = snprintf(NULL, 0, "%d", num); …
1
vote

Build management in C++ & good IDEs on Linux

Eclipse does C++ as well - through eclipse CDT - not as comprehensive as Java but pretty good. …
12
votes

Difference between %i and %d in printf() for C and C++

They are the same when used for output, e.g. with printf, but different when used as input specifier e.g. with scanf, where %d scans an integer as a signed decimal number, but %i allows defaults to …