We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93a8626 commit 25c864aCopy full SHA for 25c864a
C_Misc/append.c
@@ -11,6 +11,7 @@ struct array {
11
if(arr->length<arr->size)
12
arr->A[arr->length++]=x;
13
}*/
14
+// this is the second code to be written on the codespaces powered by github
15
16
void display(struct array arr)
17
{
C_Misc/array.c
@@ -13,7 +13,7 @@ void display(struct array arr)
for(i=0;i<arr.length;i++)
printf("%d",arr.a[i]);
}
-
+// this can be the second code for the github codespaces.
int main()
18
19
int i;
0 commit comments