Here is the code compiled in dev c++ windows:
#include int main() { int x = 5; printf(\"%d and \", sizeof(x++)); // note 1 print
sizeof() operator gives size of the data-type only, it does not evaluate inner elements.
sizeof()