#include<stdio.h>int main(){ int status; char fname[20]; scanf("%s",fname); status = remove(fname); if(status==0) printf("File deleted successfully"); else printf("Error: unable to delete the file"); return 0;}