#include <stdio.h>
#include "point.h"

int main() {
    printf("Hello world!\n");
    struct Point a;

    a.x = 3.0;
    a.y = 5.0;

    printf("--------Cordonée du point---------\n");
    printf("Abscisse : %f\n", a.x);
    printf("Ordonnee : %f\n", a.y);
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: