Open a file and output numbers

#include
#include
void accessFile();
int main()
{
    accessFile();
    return 0;
}
void accessFile()
{
    FILE *fp;
    int n = 0;
    int z = 0;
    fp = fopen(“count.txt”,”a+”);
    if(fp == NULL)
        printf(“Error opening file”);
    else
        {
            while(!feof(fp))
            {
                fscanf(fp, “%d”, &z);
                n++;
            }
        }
    fprintf(fp,”%dn”,n-1);
}

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: