• 0

[C] Segmentation fault: core dumped


Question

Could someone explain to me what a segmentation fault is, and what is causing it within my program? I'd be grateful for any help! :D

#include <stdio.h>
#define ARR 50

void Fill_Arrays(int ID[], int max, double score[], int *count);
double average(const int score[], int count1);

int main (void)
{
FILE *outp;
outp = fopen("output.out", "w");
int ID[ARR], count = 0, input_status;
double score[ARR], av;
Fill_Arrays(ID, ARR, score, &count);
av= average(score[], count);
fclose(outp);
return (0);
}


void Fill_Arrays (int ID[], int max, double score[], int *count)
{
FILE *inp;
int input_status, data1;
double data2;
inp = fopen("assignment8.dat", "r");
input_status= fscanf(inp, "%d%lf", data1, data2);
while (input_status != EOF && *count < max){
ID[*count] = data1;
score[*count] = data2;
*count++;
input_status= fscanf(inp, "%d&lf", data1, data2);
}
fclose(inp);
}

double average(const int score[], int count1)
{
int counter;
double sum=0, average;
for (counter = 0; counter <= count1; counter++)
sum+=score[counter];
average=sum/count1;
return (average);
}

Edited by togamonkey
Link to comment
https://www.neowin.net/forum/topic/327665-c-segmentation-fault-core-dumped/
Share on other sites

3 answers to this question

Recommended Posts

  • 0

It's in your Fill_Arrays function. fscanf expects pointers, you're giving it the values inside your variables instead, thus causing a seg fault. You should also check before you use FILE* inp that inp is not NULL. You've also got some errors in switching between data types. Look over this program again and I bet you'll spot some of your errors.

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • >Mozilla's Firefox has been left behind over time in terms of market share, as it has not been able to keep up with Chromium-based browsers in the performance department. I have no problems with Firefox's performance whatsoever. I suspect the reason Firefox is lagging in market share is that average consumers haven't heard of it and are fine with what was installed on their systems.
    • The Expanse: Osiris Reborn is a new narrative-driven sci-fi RPG inspired by Mass Effect by Pulasthi Ariyasinghe Out of nowhere, a narrative-driven sci-fi action RPG has been announced that will take players into the universe of The Expanse TV show and novels. The reveal trailer landed today during the Future Games Showcase, offering both a cinematic look at the setting as well as snippets of gameplay. Check out the The Expanse: Osiris Reborn debut trailer above. The studio behind the project is Owlcat Games. Some may remember that name from being involved in the role-playing titles Pathfinder: Kingmaker, Pathfinder: Wrath of the Righteous, as well as the most recent hugely well-received RPG Warhammer 40,000: Rogue Trader. Now, the studio's sights are set on The Expanse universe, and it's going for the over-the-shoulder third-person gameplay route for the first time. “We’ve been dreaming about building a sci-fi action RPG of this scale for a long time, and The Expanse is the perfect universe to bring that vision to life,” says Owlcat’s Creative Director, Alexander Mishulin. “It’s a world grounded in realism and complexity, perfect for telling a story the way we like it— mature and character-driven, where your choices truly matter." The story will have players taking the role of a custom captain that can be from the Earth, Mars, or the Belt to take control of the most advanced ship currently available. There's a crew to meet and lead, tactical third-person combat, and, as expected from this franchise, a divided solar system to navigate and make decisions on. The studio was also very direct about this experience being inspired by BioWare's Mass Effect trilogy. Aside from the action-heavy gameplay seen in the trailer, Owlcat is promising plenty of political intrigue, as well as romance options for players to dive into. Game Design Producer Yuliya Chernenko added "many of us first played it in our teenage years, and it left a lasting impression," and that "we are building on that legacy and expanding what players anticipate from this experience." The Expanse: Osiris Reborn does not have a release window just yet, but it will be coming out on PC (Steam, Epic Games Store, GOG), Xbox Series X|S, and PlayStation 5.
    • I don't know of anyway other than winareo tweaker to set the font type in Win11. They took that option away!   No wonder people are staying with Win10, or 7.   It's not our computer with Win11.... it's theirs!
    • It makes no sense to name it iOS 26 after iOS 18 but logic has left the building a long time ago (remember Microsoft and their Windows 8, 8.1 and 10 or Windows 7 that was actually 6.2)? Not to mention the stupid trend of "rapid releases" where minor releases with some bug fixes and UI changes (basically unnoticeable) masquerade as major releases...
    • Have you tried setting your font to Aptos? Its specifically designed to display better.
  • Recent Achievements

    • Conversation Starter
      Naomi723 earned a badge
      Conversation Starter
    • Week One Done
      abortretryfail earned a badge
      Week One Done
    • First Post
      Mr bot earned a badge
      First Post
    • First Post
      Bkl211 earned a badge
      First Post
    • One Year In
      Mido gaber earned a badge
      One Year In
  • Popular Contributors

    1. 1
      +primortal
      488
    2. 2
      +FloatingFatMan
      256
    3. 3
      snowy owl
      245
    4. 4
      ATLien_0
      222
    5. 5
      +Edouard
      191
  • Tell a friend

    Love Neowin? Tell a friend!