1
#include <stdio.h>
#include <math.h>


struct coeff
{
    int a;
    int b;
    int c;
};


struct roots
{
    double r1;
    double r2;
};


void calculateRoots(struct coeff*, struct roots*);


int main(int argc, char const *argv[])
{
    struct coeff *c;
    struct roots *r;
    c = NULL;
    r = NULL;

    c->a = 10;
    c->b = 20;
    c->c = 30;

    calculateRoots(c,r);

    printf("The roots are : %lf & %lf\n", r->r1, r->r2);

    return 0;
}


void calculateRoots(struct coeff *cef, struct roots *rts)
{
    rts->r1 = (-(cef->b) + sqrt((cef->b)*(cef->b) - 4*(cef->a)*(cef->c)) ) / 2*(cef->a);
    rts->r2 = (-(cef->b) - sqrt((cef->b)*(cef->b) - 4*(cef->a)*(cef->c)) ) / 2*(cef->a);
}`

コードはコンパイルされるが、実行時にセグメンテーション違反 (コア ダンプ) エラーが発生する

このコードで何が問題なのですか?? gcc コンパイラ バージョンを使用しています: gcc (Ubuntu/Linaro 4.7.3-1ubuntu1) 4.7.3

助けてください、私はライブで待っています

4

2 に答える 2

5

coeff 構造体と roots 構造体の両方にメモリを割り当てる必要があります。2行を置き換えます

c = NULL;
r = NULL;

c = malloc ( sizeof ( struct coeff ) );
r = malloc ( sizeof ( struct roots ) );

また、コードの最後 (returnステートメントの前) で、メモリの割り当てを解除します。

free ( c );
free ( r );
于 2013-06-07T17:57:41.803 に答える
0
   struct coeff *c;
    struct roots *r;

これらはポインタです - それらは構造体そのものではありません - それらはどこにも「向けられていません」。根についても同様

于 2013-06-07T17:58:00.083 に答える