2
votes
Fast plane rotation algorithm?
You don't actually need to deal with the 3D information in this case, it's just a mappping function, from one set of coordinates to another.
Look at affine transformations, they're capable …
3
votes
How do I know I reached a file’s maximum size when using ofstream?
First off, maximum file size is a filesystem limit, not an Operating System limit. It will even vary for a particular filesystem, based on how the filesystem was formatted.
As for how you' …
1
vote
Developing for different platforms individually, does anyone recommend it?
Yes, cross-platform UI libraries are always going to make your program look and/or act a little "weird" on at least one platform.
If you have good separation between the UI code and the int …
14
votes
Best C++ Resource
"Effective C++" By Scott Myers. Yes, it's a dead-tree book. Most of what you really need to know about C++ is in the …
0
votes
How can I create a temporary file for writing in C++ on a Linux platform?
The tmpnam() function in the C standard library is designed to solve just this problem. There's also tmpf …
0
votes
What is the big deal with BUILDING 64-bit versions of binaries?
Primarily a support and QA issue. The engineering work to build for 64-bit is fairly trivial for most code, but the testing effort, and the support cost, don't scale down the same way.
On t …
1
vote
Catching exceptions from a constructor’s initializer list
I don't see how you'd do that with initializer-list syntax, but I'm also a bit sceptical that you'll be able to do anything useful by catching the exception in your constructor. It depends on the d …
0
votes
What are the lengths of common datatypes?
It depends on your compiler. And your language, for that matter. Try asking a more specific question.
…
1
vote
Best way to design for localization of strings
I don't know much about how this is normally done on Windows, but the way localized strings are handled in Apple's …
0
votes
Determine Process Info Programmatically in Darwin/OSX
I think most of these values are available in the Mach API, but it's been a while since I've poked around in there. Alternatively, you could just look at the source code for the "ps" or "top" comma …
2
votes
How loader Maps DLL in to Process Address Space
What level of detail are you looking for? On the basic level, all dynamic linkers work pretty much the same way:
Dynamic libraries are compiled to relocatable code (using relative jum …
0
votes
Beginner questions regarding to “building a library”, in Xcode on iPhone specifically.
First, you do not need to rename any files to compile C++ code for the iPhone. Secondly, you'll want to create a separate project for the library. It looks like the iPhone target types don't includ …
1
vote
Way to increase memory allocated on free store
You can do this using the function realloc(), though that may only work for memory allocated with malloc() rather than "new"
having said that, you probably don't want to allocate more memor …
2
votes
0xDEADBEEF equivalent for 64 bit development?
It depends on the OS and the environment, of course. I don't think 0xDEADBEEF is necessarily a bad pointer in an arbitrary 32-bit system, either.
Realistically, any modern OS should be acc …
1
vote
Are there conclusive studies/experiments on C compilation using a C++ compiler?
I don't know of any studies off-hand, but given the C++ philosophy that you don't pay the price for features you don't use, I doubt there'd be any significant difference between compiling C code wi …
