Question #177

Author: admin
tags: PHP  
function printArg(int $arg) {
  var_dump($arg);
}

printArg(null);
What will be printed?
int(0)
int(1)
NULL
Fatal error
Rate the difficulty of the question:
easyhard