t 64 File Handling

download t 64 File Handling

of 1

description

k

Transcript of t 64 File Handling

  • #include#include //includes directive for working with filesusing namespace std;

    int main(){

    ofstream buckyFile; //fileobject. we need objects to work with files buckyFile.open("tuna.txt"); //there is an open function in the directive being called

    buckyFile