-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbout.c
More file actions
26 lines (25 loc) · 857 Bytes
/
About.c
File metadata and controls
26 lines (25 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
#include <conio.h>
#include "A2Matrix.h"
void about(void)
{
system("cls");
printf("\t\tWELCOME!!! \n\n");
printf("This is a project from A2\n");
printf("We create this program to calculate basic operations of a matrix\n");
printf("and fundamental comparisons between two matrices.\n\n");
printf("\n\n\n");
printf("Version details:\n");
printf("----------------\n");
printf("THIS VERSION: 23082020 \n");
printf("PREVIOUS RELEASE: 04062018 \n\n\n");
printf("Contact details:\n");
printf("----------------\n");
printf("Email: binh.tran.99@hcmut.edu.vn\n");
printf("Phone: 0979 528 010\n");
printf("Ho Chi Minh city University of Technology, VNU-HCM\n\n\n\n");
printf("Press any key to return...");
getch();
}