vote up 0 vote down star

Hi

I am getting a malloc error with bus error on using the fprintf statements in C++ (code below). Any pointers on what could be going wrong? Note absAmb and dModel both have valid values. Thanks.

FILE *fPtr;
char fName[100];

sprintf(fName, "Info.dat", block);
if ( (fPtr = fopen(fName,"w")) == NULL )
{  
    return( FALSE );
}

int absAmb = rint(fda[0]/prf[0]);

fprintf(fPtr, "  %d", absAmb); //ERROR LINE
fprintf(fPtr, "  %d", dModel);
fclose(fPtr);
flag

64% accept rate
what is block in sprintf? – Nick D Sep 28 at 18:33
What is f in your fprintf(f)? Do you meant fPtr? – Uri Sep 28 at 18:38

3 Answers

vote up 2 vote down
fprintf(f, "  %d", absAmb); //ERROR LINE

You use wrong variable in fprintf

fprintf(fPtr, "  %d", absAmb); // <--- fPtr
link|flag
vote up 1 vote down

What is 'f'? You stored the results of fopen into fPtr but then do a fprintf to f.

link|flag
vote up 0 vote down

You've declared your file pointer variable "fPtr", but you are trying to write to "f". Change your fprintf() call to use fPtr as the first parameter.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.