#include <stdlib.h> typedef struct point_t point_t; struct point_t { double x; double y; }; int main(void) { point_t *pt = malloc(sizeof(point_t)); if (!pt) ...
確定! 回上一頁