Is Template Metaprogramming faster than the equivalent C code ? ( I\'m talking about the runtime performance) :)
Template metaprogramming does not give you any magical powers in terms of performance. It's basically a very sophisticated preprocessor; you can always write the equivalent in C or C++, it just might take you a very long time.