Answers for "perl file handling"

C
0

perl file handling

open (READFILE, "<data.txt") or die "File opening failed"; #reading file
open (WRITEFILE, ">data.txt") or die "File opening failed"; #writing file
Posted by: Guest on January-30-2022

Code answers related to "C"

Browse Popular Code Answers by Language