#include #include "09-Exercice4-Sphere.h" int main(void) { sphere sp = { 2.3,{ 1.1,-2.9,-4.8 } }; printf("%lf : %lf %lf %lf\n", sp.rayon, sp.centre.x, sp.centre.y, sp.centre.z); return 0; }