PHP Basics Learning Mode

You run the following PHP script:

<?php
function calc()
{
    $x=10;
    $b=++$x;
    print($b);
}
calc();
?>

What will be the value of the variable b?