From 095ceafbae565eba7c8614fe7d2d9147a65a42a9 Mon Sep 17 00:00:00 2001 From: Matt Allwright Date: Sat, 27 Oct 2018 10:42:53 -0600 Subject: [PATCH 1/3] Added my name. Also formatted the file to use the superior formatting structure. --- example.c | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/example.c b/example.c index ba2b6e8..a5da4a5 100644 --- a/example.c +++ b/example.c @@ -1,10 +1,12 @@ #include -int main() -{ - // Add your name to be printed below - printf("Who has completed the tutorial?\n"); - printf("Natalia\n"); +int main() { - return 0; -} \ No newline at end of file + // Add your name to be printed below + printf("Who has completed the tutorial?\n"); + printf("Natalia\n"); + printf("Matt\n"); // Always null-terminate your strings! + + return 0; + +} From 412b8050bc29c04c1ee81fc10436fc200e9b56c8 Mon Sep 17 00:00:00 2001 From: Matt Allwright Date: Sat, 27 Oct 2018 10:50:21 -0600 Subject: [PATCH 2/3] Removed useless comment --- example.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example.c b/example.c index a5da4a5..8cf5ef7 100644 --- a/example.c +++ b/example.c @@ -5,7 +5,7 @@ int main() { // Add your name to be printed below printf("Who has completed the tutorial?\n"); printf("Natalia\n"); - printf("Matt\n"); // Always null-terminate your strings! + printf("Matt\n"); return 0; From f3bd51c8324610050f2ac20a6bddeb1b2f2beb50 Mon Sep 17 00:00:00 2001 From: Matt Allwright Date: Mon, 29 Oct 2018 13:34:37 -0600 Subject: [PATCH 3/3] Just checking an access token --- example.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/example.c b/example.c index 8cf5ef7..9dd3cca 100644 --- a/example.c +++ b/example.c @@ -6,7 +6,8 @@ int main() { printf("Who has completed the tutorial?\n"); printf("Natalia\n"); printf("Matt\n"); - + printf("Don't mind me. Just checking an access token.\n"); + return 0; }