#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
助けてください、私はライブで待っています