“cara menghapus file di CPP” Kode Jawaban

Hapus file CPP

/* remove example: remove myfile.txt */
#include <stdio.h>

int main ()
{
  if( remove( "myfile.txt" ) != 0 )
    perror( "Error deleting file" );
  else
    puts( "File successfully deleted" );
  return 0;
}
Funny Fox

cara menghapus file di CPP

#include<iostream>
#include<stdio.h>
using namespace std;
int main()
{
    intstatus;
    char fileName[20];
    cout<<"Enter the Name of File: ";
    cin>>fileName;
    status = remove(fileName);
    if(status==0)
        cout<<"\nFile Deleted Successfully!";
    else
        cout<<"\nError Occurred!";
    cout<<endl;
    return 0;
}
Wicked Willet

Jawaban yang mirip dengan “cara menghapus file di CPP”

Pertanyaan yang mirip dengan “cara menghapus file di CPP”

Lebih banyak jawaban terkait untuk “cara menghapus file di CPP” di C++

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya