Speed of increment operators



Dr.Ruud <rvtol+news@xxxxxxxxxxxx> wrote:
The first two lines of my smaller Perl scripts often look like:

#!/usr/bin/perl
use strict; use warnings; ++$|;

On a slightly different track, is there any different in execution
speed between ++$i and $i++ in Perl. I seem to remember that there
was such a difference in C++ but may be mistaken.

Axel
.