diff --git a/gitPractice.c b/gitPractice.c index 6ca7f4e..cb6363f 100644 --- a/gitPractice.c +++ b/gitPractice.c @@ -4,6 +4,7 @@ Add a statement that prints your name in main */ void Preston(int); +void Bruno(); #include @@ -11,6 +12,8 @@ int main() { puts("Lonnie Bowe"); Preston(0); + Bruno(); + puts("Denny Hood"); return 0; } @@ -27,3 +30,7 @@ void Preston(int index) Preston(index + 1); } } + +void Bruno(){ + printf("Bruno Jahel\n"); +}