forked from hishamhm/pull-request-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhello.c
More file actions
29 lines (23 loc) · 648 Bytes
/
hello.c
File metadata and controls
29 lines (23 loc) · 648 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
#include <stdio.h>
int main(int argc, char** argv) {
printf("This tutorial was completed by:\n\n");
printf("@eneskaya\n");
printf("@yogs-kum\n");
printf("@gkarlos\n");
printf("@roxierox\n");
printf("@santushet\n");
printf("@praveenkumarb\n");
printf("@mkeohane-cisco\n");
printf("@mario1ua\n");
printf("@muhammadhassan102\n");
printf("@pdubois\n");
printf("@Curt-T\n");
printf("@azru0512\n");
printf("@ddferrando\n");
printf("@luotaoyeah\n");
printf("@uthmanhere\n");
printf("@diszgaurav\n");
printf("@behpn\n");
printf("\nSend a PR to add your username here! :-) \n");
return 0;
}