The statement $myvar = <STDIN>
Options
- Stores the string “STDIN” in $myvar
- Reads a line and saves in $myvar
- Stores the string “” in $myvar
- Returns an error that double quotes are missing
CORRECT ANSWER : Reads a line and saves in $myvar
Write your comments