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
1 change: 1 addition & 0 deletions README
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
Hello World!
This is the new line i am adding
8 changes: 8 additions & 0 deletions forkfile.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#include<stdio.h>

int main(){
printf("Hi this is fork branch c file");

return 0;
}

6 changes: 6 additions & 0 deletions list1.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#include<stdio.h>

int main(){
printf("This is list 1");
return 0;
}
6 changes: 6 additions & 0 deletions list2.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#include<stdio.h>

int main(){
printf("list2 is here");
return 0;
}