Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/README
Original file line number Diff line number Diff line change
@@ -1 +1 @@
This is to test out if READMEs show up online in subdirs off the main project.
This is to test out if READMEs show up online in subdirs off the main project. It's good to have a practice project.
4 changes: 2 additions & 2 deletions src/hello.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ int main (int argc, char **argv) {
/* This is a test git app */

char in[50];
printf ("Why, Hello there, Git!");
printf ("Why, Hello there, Mister GitHub!");
printf("\n");
printf("Enter Your Name: ");
printf("Please Enter Your Name: ");
scanf("%s", in);
printf("Buon Giorno, %s!\n", in);
return (0);
Expand Down