Why do Perl operators have different precedence than C operators?
Actually, they don’t. All C operators that Perl copies have the same precedence in Perl as they do in C. The problem is with operators that C doesn’t have, especially functions that give a list context to everything on their right, eg print, chmod, exec, and so on. Such functions are called “list operators” and appear as such in the precedence table in the perlop manpage.