PHP Basics Learning Mode

Consider the following code:

<?php
function modvalue()
{
       $a=20;
       $b=4;
       $c=$a%$b;
       print($c);
} 
modvalue();
?>

What will be the value of the variable c?