I've been curious how rem
in Linux works and trying to write my own C
code that can delete a file but when I searched for the answer, I only got the programs that were using remove()
system call.
Is there any other way of doing it without using system call like writing your own code to do the job?
I've accomplished copying file through C filing but can't find a solution to delete a file through C.