w3resource

C Exercises: Remove a file from the disk

C File Handling : Exercise-15 with Solution

Write a program in C to remove a file from the disk.

Sample Solution:

C Code:

#include <stdio.h>

void main()
{
	int status;
	char fname[20];
	printf("\n\n Remove a file from the disk :\n");
	printf("----------------------------------\n"); 	
	printf(" Input the name of file to delete : ");
	scanf("%s",fname);
	status=remove(fname);
	if(status==0)
	{
		printf(" The file %s is deleted successfully..!!\n\n",fname);
	}
	else
	{
		printf(" Unable to delete file %s\n\n",fname);
	}
}

Sample Output:

 Remove a file from the disk :                                                                                
----------------------------------                                                                            
 Input the name of file to delete : test.txt                                                                  
 The file test.txt is deleted successfully..!!

Flowchart:

Flowchart: Remove a file from the disk

C Programming Code Editor:

Previous: Write a program in C to decrypt a previously encrypted file file.

Next: String representation of common directory paths.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.