-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWelcome.c
More file actions
30 lines (29 loc) · 953 Bytes
/
Welcome.c
File metadata and controls
30 lines (29 loc) · 953 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
27
28
29
30
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
#include <conio.h>
#include "A2Matrix.h"
void main_logo(int X1, int Y1)
{
//welcome logo
system("cls");
gotoxy(X1, Y1 + 1);
printf("## ## ### ######## ######## #### ## ##");
gotoxy(X1, Y1 + 2);
printf("### ### ## ## ## ## ## ## ## ##");
gotoxy(X1, Y1 + 3);
printf("#### #### ## ## ## ## ## ## ## ##");
gotoxy(X1, Y1 + 4);
printf("## ### ## ## ## ## ######## ## ###");
gotoxy(X1, Y1 + 5);
printf("## ## ######### ## ## ## ## ## ##");
gotoxy(X1, Y1 + 6);
printf("## ## ## ## ## ## ## ## ## ##");
gotoxy(X1, Y1 + 7);
printf("## ## ## ## ## ## ## #### ## ## ");
gotoxy(X1, Y1 + 8);
printf("A project from A2");
gotoxy(X1, Y1 + 10);
printf("Press any key to begin. ");
getch();
}