Advertisement
Dprogrammed1

cplus

Apr 1st, 2019
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. #include <stdio.h>
  2.     int main ()
  3.     {
  4.         if (remove( "myfile.txt" ) != 0 )
  5.             perror( "Error" );
  6.         else
  7.             puts( "Success" );
  8.         return 0;
  9.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement