/in/ex1.c: In function 'main':
/in/ex1.c:14:33: error: 'ComplexNumber {aka struct <anonymous>}' has no member named 'image'; did you mean 'imag'?
scanf("%lf+%lf\n",&a.real,&a.image);
^
/in/ex1.c:15:33: error: 'ComplexNumber {aka struct <anonymous>}' has no member named 'image'; did you mean 'imag'?
scanf("%lf+%lf\n",&b.real,&b.image);
^
/in/ex1.c:17:6: error: 'ComplexNumber {aka struct <anonymous>}' has no member named 'image'; did you mean 'imag'?
c.image=a.image+b.image;
^
/in/ex1.c:17:14: error: 'ComplexNumber {aka struct <anonymous>}' has no member named 'image'; did you mean 'imag'?
c.image=a.image+b.image;
^
/in/ex1.c:17:22: error: 'ComplexNumber {aka struct <anonymous>}' has no member named 'image'; did you mean 'imag'?
c.image=a.image+b.image;
^
/in/ex1.c:18:34: error: 'ComplexNumber {aka struct <anonymous>}' has no member named 'image'; did you mean 'imag'?
printf("c=%f+%fi\n", c.real,c.image) ;
^