Search Results

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

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 …
5
votes

x86 Assembly: What’s the main prologue and epilogue?

The initialisation isn't generated by the c compiler, it is part of the c library (which makes it easier to tailor for each OS/processor). The code in question is normally very simple on wi …