I have a C++ question. I wrote the following class:
class c { int f(int x, int y){ return x; } };
the sizeof() of class c returns \"1\"
It's size is of 1, because it can not be 0, otherwise two objects of this type wouldn't be addressable (couldn't differentiate their addresses)