Question #176

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

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