Search Results

13
votes

Garbage collection vs. non garbage collection programming languages

Dellocating things you need Not deallocating things you no longer need (because you're not tracking allocations/use/frees well) Re-allocating new instances …
0
votes

Is there a programmatic way to check stack corruption

Yes, valgrind, electricfence, etc. …
0
votes

About atomicity guarantee in C

Worrying about just x86 is horribly unportable coding anyway. This is one of those seemingly small coding tasks that turns out to be a project in itself. Find an existing library project that sol …
1
vote

Does an arbitrary instruction pointer reside in a specific function?

OK, I haven't done assembly in about 15 years. Back then, I didn't do very much. Also, it was 680x0 asm. BUT... Don't you just need to put a label before and after the function, take the …
1
vote

Does GCC support long long int?

long longs are well supported, and have been for a long long time [sorry]. As I understand it, this should have been 128 bit on 64-bit platforms, but for compatibility/portability reasons in GCC, …
1
vote

Where are constant variables stored in C?

This is mostly an educated guess, but I'd say that constants are usually stored in the actual CPU instructions of your compiled program, as immediate data. So in other words, most instructions inc …
0
votes

Is C faster than C++?

Generally, hand-crafted code for a specific platform, by an expert in that platform, will be faster in C than in C++, because, very simply, C lets you think at a lower level, closer to the actual i …
0
votes

C++ sync and backup framework

Yep, rsync: http://librsync.sourceforge.net/ Or if you really want a complete backup (rather than sync) codebase, use t …