-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.c
More file actions
12 lines (12 loc) · 698 Bytes
/
Copy pathheader.c
File metadata and controls
12 lines (12 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
void headMessage(const char *message)
{
system("cls");
printf("\t\t\t############################################################### ############");
printf("\n\t\t\t############ ############");
printf("\n\t\t\t############ Student Record Management System Project in C ############");
printf("\n\t\t\t############ ############");
printf("\n\t\t\t############################################################# ##############");
printf("\n\t\t\t---------------------------------------------------------------------------\n");
printMessageCenter(message);
printf("\n\t\t\t----------------------------------------------------------------------------");
}