Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7543003
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T08:18:56+00:00 2026-05-30T08:18:56+00:00

In my program, I am trying to read data from binary file, and then

  • 0

In my program, I am trying to read data from binary file, and then write it’s hex representation to txt file.

#include <stdio.h>
#include <stdlib.h>

int counter = 0;
int read;
int i = 0;
long size;
FILE *file1 = NULL; 
FILE *file2 = NULL; 
fpos_t length;
char newLine = '\n';

int main(int argc, char **argv) {

    if (argc < 2) {
    printf("Use: %s file1 file2", argv[0]);
    exit (-1);
    }

    unsigned char hex[513];
    unsigned char buffer[257];
    file1 = fopen(argv[1], "rb");
    fseek(file1, 0, SEEK_END);
    fgetpos(file1, &length);
    size = length.__pos;
    fseek(file1, 0, SEEK_SET); 
    if (file1) {
            file2 = fopen(argv[2], "w");
            if (!file2) {
                    printf("Cannot open file: %s\n", argv[2]);
                    exit(-1);
            }
            while (counter < size) {
                    read = fread(buffer, 1, 256, file1);
                    counter += read;
                    i = 0;
                    while (i < read) {
                            sprintf(hex, "%02x",  buffer[i++]);
                    }
                    fwrite(hex, 1, 512, file2);
                    fwrite(&newLine, 1, 1, file2);
                    }
    } else
           printf("Cannot open file %s\n", argv[1]);
    fclose(file1);
    fclose(file2);
}

Unfortunately data don’t write to txt file properly. Please help me find my mistake. What is wrong in this code?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T08:18:57+00:00Added an answer on May 30, 2026 at 8:18 am

    Part of the issue is that the sprintf call will keep overwriting whatever is in hex. It does not append to it. So the result is that it writes the full size of that buffer to the file, but it will only have the very last hex value in it (in the first 2 bytes).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to read a binary file from a program that writes a
HI all. I am trying to make little program that reads data from file
I am trying to program using C to write binary data to a .bin
Using Python (3.1 or 2.6), I'm trying to read data from binary data files
I am trying to read in data from a text file (the time). and
In a C++ program, I am trying to read data from MSSQL database using
I am trying to read in data stored in a custom binary file generated
I'm trying to input data from an XML file in a C++ program using
Hey there. I'm trying to write a small program that will read the four
Imagine we have a program trying to write to a particular file, but failing.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.