diff --git a/README b/README index 980a0d5f..0b45881d 100644 --- a/README +++ b/README @@ -1 +1,2 @@ Hello World! +This is the new line i am adding diff --git a/forkfile.c b/forkfile.c new file mode 100644 index 00000000..d1a351a4 --- /dev/null +++ b/forkfile.c @@ -0,0 +1,8 @@ +#include + +int main(){ + printf("Hi this is fork branch c file"); + + return 0; +} + diff --git a/list1.c b/list1.c new file mode 100644 index 00000000..890bddd5 --- /dev/null +++ b/list1.c @@ -0,0 +1,6 @@ +#include + +int main(){ + printf("This is list 1"); + return 0; +} diff --git a/list2.c b/list2.c new file mode 100644 index 00000000..f0204b79 --- /dev/null +++ b/list2.c @@ -0,0 +1,6 @@ +#include + +int main(){ + printf("list2 is here"); + return 0; +}