* Alejandro Colomar <alx.manpages@xxxxxxxxx>, 2021-08-28, 02:17:
Hmm, I just came up with some very stupid piece of code that can show the different precedence between "unary operators" and "cast operators":sizeof(int)x;
Perhaps a more vivid example would be: sizeof (int) + 1which is parsed as
(sizeof (int)) + 1 rather than: sizeof ((int) +1) -- Jakub Wilk