-
Notifications
You must be signed in to change notification settings - Fork 18
/
hello.c
56 lines (46 loc) · 880 Bytes
/
hello.c
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#include <stdio.h>
#define KGRN "\x1B[32m"
#define KCYN "\x1B[36m"
void hello_slava(void)
{
printf("Hello Slava ");
printf("Current date 08.12.2022\n");
}
void prtMeinNachname() {
printf("Vyshnevskyi Mykhailo\r\n");
}
void print_name()
{
printf("Tereshchenko Dmytro\r\n");
}
void myfunc()
{
print_name();
printf("Maksym!\r\n");
printf("Current date 07.12.2022\r\n");
}
void printGreeting(){
printf("Hello, BaseCamp!");
}
voi hello_saurier()
{
printf("%sHi from Saurier!\n", KGRN);
printf("%sHi from Saurier, but blue!\n", KCYN);
}
int main()
{
hello_slava();
prtMeinNachname();
printGreeting();
myfunc();
printf("Andrii\n");
printf("My name is Roman\n");
printf("Andrii\n");
printf("And Yurii__\n");
printf("This is my BUG ! by yyefimov 18:48");
printf("hey you\n");
printf("green\n");
hello_saurier();
return 0;
}
void func(){}