#include #include typedef struct { char color[10]; double radius; } Ball; void foo(Ball*); int main(void) { Ball ball = {"red", 5.0}; foo(&ball);
確定! 回上一頁