Sizeof - Fundamental Data Type

Just now discovered that for the sizeof operator to work on a keyword like int, the argument should be within ( ). For example:

byte n = sizeof(int);

For arguments other than keyword, sizeof works on both styles -- with and without ( ).