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 7067219
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T05:10:30+00:00 2026-05-28T05:10:30+00:00

May I just ask why this piece of code is resulting to a segmentation

  • 0

May I just ask why this piece of code is resulting to a segmentation fault. I’m trying to get input from a text file and I can’t figure out what is the problem.

using namespace std; 
using namespace cv;

int main()
{
    char str[50];
    FILE *trainfile;
    int k, n, maxval1, maxval2, classnum;
    char dataArray[n][3];

    trainfile = fopen("training.txt", "r+");

    if(trainfile == NULL){
        perror("Cannot open file.\n");
    }else{
        while(!feof(trainfile)){
            fscanf(trainfile, "%s", str);       
        }
    }
    fclose(trainfile);

    return 0;
}
  • 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-28T05:10:31+00:00Added an answer on May 28, 2026 at 5:10 am

    One problem is that your buffer might not be big enough.

    You should get the size of the file first, then make a dynamic buffer of that size, and then finally read the file.

    fseek(trainfile,0,SEEK_END); //Go to end
    int size = ftell(trainfile); //Tell offset of end from beginning
    char* buffer = malloc(size); //Make a buffer of the right size
    
    fseek(ftrainfile,0,SEEK_SET); //Rewind the file
    
    //Read file here with buffer
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm just starting to get into jquery/javascript programming so this may be a beginner
This may be a stupid question but im just starting to learn Rail thats
This may apply to other mobile operating environments than just Symbian... However, the issue
This may sound like a stupid question but I'm a beginner not just to
I've just moved a forum from BradPPresents.com to BradP.com. May not be SFW. It's
This may be closed, a couple of minutes from now, but I think I
I'm new to PHP and this may be a stupid question to ask, so
There may be more than one way to ask this question, so here's a
I'm new to OOP so this may be a dumb question to ask.. When
Hello fellow developers... just to make sure, I want to ask this question: How

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.