Tag: compiler optimization
What is restrict in C? The restrict keyword was introduced in C99 as a type qualifier for pointers. It tells the compiler that the pointer is the only means …
November 5, 2013
32 bit, algorithms, assembly language, c / c++, code, implementation, interpreter / compiler, optimization, programming languages, windows
Introduction You probably came across the term ‘Tail Recursion’ or ‘Tail Recursive’ before. You even have written a piece of Tail Recursive functions/algorithms without knowing it. So, what is …