Name: Anonymous 2012-03-18 16:46
Hi
this year i'm going to go on internship to Facebook. Has smb worked there? Any feedback?
this year i'm going to go on internship to Facebook. Has smb worked there? Any feedback?
#include <cstdio>
template <int T> struct hurf {
static const int value = (T & 1) + hurf<T >> 1>::value;
};
template<> struct hurf<0> {
static const int value = 0;
};
int main(int, char**) {
printf("%d\n", hurf<7>::value );
return 0;
}