Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
template < class Q > size_t getSize() { return sizeof( Q ); }
int main() { std::cout << getSize< char >() << " : " << sizeof( char ) << std::endl; std::cout << getSize< int >() << " : " << sizeof( int ) << std::endl; std::cout << getSize< double >() << " : " << sizeof( double ) << std::endl; return 0; }
template< class Q > size_t getSize( Q* q=0 ) { return sizeof( Q ); }