Here's the code:
Here's the output:
264600
5400 14288400
Does this make sense to anybody????
Code:
p = 0;
for ( i = 0; i < lp; i++)
{
p += fwrite(&Pt[i*pagesize], sizeof(char), pagesize, fp);
}
fclose(fpt);
printf("%d\n", p);
printf("%d %d \n",pagesize, p/pagesize);
Here's the output:
264600
5400 14288400
Does this make sense to anybody????