Ваши указатели немного ошибочны, код никогда не выделял памяти для чтения значений, а fread()
возвращает количество прочитанных элементов, код (по какой-то причине) перезаписывает только что прочитанное значение с этим результатом.
Вот исправленная версия, но вы не включаете тестовые данные, поэтому она не проверена.
#include <stdio.h>
#include <stdlib.h>
int main( )
{
int l;
int *pn;
int *q;
float *p;
int arraysize;
FILE *fp = fopen( "inventory.txt", "r+b" ); //declarations and I open up the binary file "inventory.txt"
if ( fp == NULL )
{ //check file
printf( "nah" );
exit( EXIT_FAILURE );
}
fread( &arraysize, sizeof( int ), 1, fp ); //set arraysize in this program equal to i in the binary file inventory.txt?????? Here is where I get segmentation fault
printf( "marker1" ); //place marker, I am not getting to this point when running the program
// Allocate some memory to hold the data (Yes! With cast on malloc())
q = (int *)malloc(arraysize * sizeof( int )); // TODO - check malloc() OK
pn = (int *)malloc(arraysize * sizeof( int )); // TODO - check malloc() OK
p = (float *)malloc(arraysize * sizeof( float )); // TODO - check malloc() OK
// read each entire block in a single operation
fread( q, sizeof( int ), arraysize, fp ); //set array elements ("arraysize" of them) pn, q, and p to the array elements of the same name in binary file inventory.txt
fread( p, sizeof( float ), arraysize, fp );
fread( pn, sizeof( int ), arraysize, fp );
printf( "Below are the items in your inventory.\nPart#\tQuantity\tPrice\n" ); //print out the values
for ( l = 0; l < arraysize; l++ )
{
printf( "%5d\t", pn[l] );
printf( "%8d\t", q[l] );
printf( "%9.2f\n", p[l] );
}
return 0;
}