Skip to content

Commit a9c90d8

Browse files
committed
adding lists
1 parent 4d468be commit a9c90d8

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

list1.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#include<stdio.h>
2+
3+
int main(){
4+
printf("This is list 1");
5+
return 0;
6+
}

list2.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#include<stdio.h>
2+
3+
int main(){
4+
printf("list2 is here");
5+
return 0;
6+
}

0 commit comments

Comments
 (0)