From 1c88d8153797ac669dd309b48efb5bd9647ae76c Mon Sep 17 00:00:00 2001 From: pareekaabhi33 <72213935+pareekaabhi33@users.noreply.github.com> Date: Thu, 1 Oct 2020 21:35:45 +0530 Subject: [PATCH] Update Bai6.4A.c --- Bai6.4A.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Bai6.4A.c b/Bai6.4A.c index b6ee292..0a83d08 100644 --- a/Bai6.4A.c +++ b/Bai6.4A.c @@ -1,23 +1,23 @@ #include struct HoTen { - char ho[20]; - char dem[20]; - char ten[20]; + char a[20]; + char b[20]; + char c[20]; }; struct DiemMH { - float toan; - float van; - float anh; - float tbc; + float d; + float e; + float f; + float g; }; struct SinhVien { - int ma; + int h; struct HoTen hoVaTen; - int tuoi; - char gioiTinh[10]; + int i; + char j[10]; struct DiemMH diem; };