Search Results

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

Carbon vs Cocoa, is Carbon a dead end with OS X?

There are a few compelling reasons to use Carbon, but for most new code, using Cocoa will be less work overall (even including learning Objective-C). Unless you've got existing Carbon code, or you' …
1
vote

Recommended gcc warning options for C

-Wfloat-equal, -Wshadow, -Wmissing-prototypes, …
3
votes

Learn C first before learning Objective-C

There are a lot of things you can't do purely in Objective-C, so learning some basic C skills will be pretty critical. You'll at least need to understand variable declarations and the basic C libra …
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

Russian Peasant Multiplication

I think it's incomplete, and very hard to read. What specific sort of feedback were you looking for? …
1
vote

Java - C-Like Fork?

Maybe you could go into greater detail about what you're trying to accomplish? As mentioned, you can exec() another process, which could be another instance of the JVM, but that doesn't give you th …
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 …
1
vote

function name scoping in c

If it compiles without errors from the Makefile, but not from your XCode project, it is most likely because the compiler's options are being set differently in the two environments. Check the Makef …
0
votes

What are the important notions in C that you did not learn from your teachers

The concepts of order of execution and sequence points are pretty useful, and not much discussed. Knowing that x=x++; invokes undefined behavior is useful. Knowing …
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 …
-1
votes

Calculate minimum area rectangle for a polygon

Obviously, you'll need the coordinates of the points to get the answer. If the rectangle is aligned to the X and Y aces, then the solution is trivial. If you want the smallest possible rectangle, a …
4
votes

How to increase/decrease an Unsigned Char?

It's possible that you're overrunning the end of your allocated buffer, and that's why you're getting the access violation. That most likely means that your math is wrong in the allocation, or your …
1
vote

What are efficient ways to debug an optimized C/C++ program?

It's always easier to debug a non-optimized version, of course. Failing that, disassembly of the code can be helpful. Other techinques I've used include partially de-optimizing the code by forcing …
0
votes

Array Size and Addresses in C

As other people have mentioned, this is undefined behavior under the standard, and could do pretty much anything. In addition If I change the printf formats for the addresses to the more-appropriat …

1 2 next
15 30 50 per page