t 64 file handling

Upload: tim-acosta

Post on 03-Mar-2016

218 views

Category:

Documents


0 download

DESCRIPTION

k

TRANSCRIPT

  • #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