From 1f0e55613716590acd20f9482404e01532850f5c Mon Sep 17 00:00:00 2001 From: Sambo Chea Date: Sun, 2 Aug 2020 11:31:44 +0700 Subject: [PATCH] Fixed missing semi --- work1/single.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/work1/single.c b/work1/single.c index f71328e..81bb674 100644 --- a/work1/single.c +++ b/work1/single.c @@ -17,7 +17,7 @@ struct student_tag { struct person_tag student_info; struct course_tag course_info; struct student_tag *next; -} +}; void display_students(void); void search_student(void);