Skip to content

Commit 25c864a

Browse files
committedJan 8, 2023
Checking CodeSpaces
1 parent 93a8626 commit 25c864a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎C_Misc/append.c

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ struct array {
1111
if(arr->length<arr->size)
1212
arr->A[arr->length++]=x;
1313
}*/
14+
// this is the second code to be written on the codespaces powered by github
1415

1516
void display(struct array arr)
1617
{

‎C_Misc/array.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ void display(struct array arr)
1313
for(i=0;i<arr.length;i++)
1414
printf("%d",arr.a[i]);
1515
}
16-
16+
// this can be the second code for the github codespaces.
1717
int main()
1818
{
1919
int i;

0 commit comments

Comments
 (0)
Please sign in to comment.