C Kata Kunci Typedef

struct Distance{
  int feet;
  float inch;
};

int main() {
  struct Distance d1, d2;
}
SAMER SAEID