#include <stdio.h>
#include <stdlib.h>
int main()
{
system("color 2f");
if(remove("file.txt") == 0){
perror("Successfully Deleted!");
}else{
perror("Error!");
}
return 0;
}
#include <stdlib.h>
int main()
{
system("color 2f");
if(remove("file.txt") == 0){
perror("Successfully Deleted!");
}else{
perror("Error!");
}
return 0;
}
No comments:
Post a Comment