Monthly Archives: August 2007

‘Developers’ Anagrams !!!

I’m a big fan of anagrams, they are very interesting to me, they are mysterious, funny and sometimes true.. quoting a phrase on my favorite anagram generator site “All the life’s wisdom can be found in anagrams. Anagrams never lie.” here are a few interesting anagrams for the word developers: Peeve Lords (that’s us for [...]

The typename Keyword

Indicates that the name following represents a parameterized type placeholder that will be replaced by a user-specified actual type. consider the following example: template<class T> class A { T::x(y); // ambiguous: calling a function or constructing an object? // without ‘typename’ this will be interpreted as a function call typedef char C; A::C d; } [...]