How to create a 2D point data structure with two floating-point numbers in C

1 Answer

0 votes
#include <stdio.h>

typedef struct {
    double x;
    double y;
} Point;

int main(void) {
    Point p;

    p.x = 7.21;
    p.y = 6.53;

    printf("%f %f", p.x, p.y);

    return 0;
}




/*
run:

7.210000 6.530000
 
*/

 



answered Dec 25, 2022 by avibootz
...