vote up 0 vote down star

Consider the following simple C program that read a file into a buffer and displays that buffer to the console:

#include<stdio.h>

main()
{
  FILE *file;
    char *buffer;
    unsigned long fileLen;
    //Open file
    file = fopen("HelloWorld.txt", "rb");
    if (!file)
    {
        fprintf(stderr, "Unable to open file %s", "HelloWorld.txt");
        return;
    }
    //Get file length
    fseek(file, 0, SEEK_END);
    fileLen=ftell(file);
    fseek(file, 0, SEEK_SET);
    //Allocate memory
    buffer=(char *)malloc(fileLen+1);
    if (!buffer)
    {
        fprintf(stderr, "Memory error!");
        fclose(file);
        return;
    }
    //Read file contents into buffer
    fread(buffer, fileLen, 1, file);
    //Send buffer contents to stdout
    printf("%s\n",buffer);    
    fclose(file);
}

The file it will read simply contains:

Hello World!

The output is:

Hello World!²²²²▌▌▌▌▌▌▌↔☺

It has been a while since I did anything significant in C/C++, but normally I would assume the buffer was being allocated larger than necessary, but this does not appear to be the case.

fileLen ends up being 12, which is accurate.

I am thinking now that I must just be displaying the buffer wrong, but I am not sure what I am doing wrong.

Can anyone clue me in to what I am doing wrong?

flag

70% accept rate
6  
Don't expect us to do the homework for you. SO is populated more and more with these people. – Joan Venge Jun 12 at 20:24
4  
@Joan: a) This is not homework little guy. b) Thanks for your response to a 7 month old question. – Rich B Jun 12 at 20:26
1  
Joan Venge: ha ha totally – Yonita Aug 14 at 21:19
@Yonita: are you just going through Rich B's questions and downvoting? – voyager Oct 16 at 15:15
@Voyager: Among many others. Don't worry about it. – Rich B Oct 17 at 14:09

3 Answers

vote up 25 vote down check

You need to NUL-terminate your string. Add

buffer[fileLen] = 0;

before printing it.

link|flag
Take the -1 out and you are right! – Rich B Nov 3 '08 at 22:48
I had tried to do this at one point, but for some reason it looks like I had a brain fart and used \n instead of \0 for some stupid reason. Told you I was rusty! – Rich B Nov 3 '08 at 22:51
I missed that the buffer was fileLen+1 bytes long... – JesperE Nov 3 '08 at 22:52
Thanks! I would mark your answer as the accepted answer but the button is strangely not there anymore... WTF – Rich B Nov 3 '08 at 22:55
There's no button but a mark on the left side now – Vinko Vrsalovic Nov 3 '08 at 23:01
show 2 more comments
vote up 3 vote down

JesperE is correct regarding the nul-termination issue in your example, I'll just add that if you are processing text files it would be better to use fgets() or something similar as this will properly handle newline sequences across different platforms and will always nul-terminate the string for you. If you are really working with binary data then you don't want to use printf() to output the data as the printf functions expect strings and a nul byte in the data will cause truncation of the output.

link|flag
Thanks for the advice. This is a binary file (parts of it). I am just using printf() at the moment to get my bearings and 'debug'. – Rich B Nov 4 '08 at 0:09
vote up 20 vote down

JesperE's approach will work, but you may be interested to know that there's an alternate way of handling this.

You can always print a string of known length, even when there's no NUL-terminator, by providing the length to printf as the precision for the string field:

printf("%.*s\n", fileLen, buffer);

This allows you print the string without modifying the buffer.

link|flag

Your Answer

Get an OpenID
or

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