This commit is contained in:
nothke
2024-08-08 20:39:18 +02:00
commit 64be90de80
11 changed files with 726 additions and 0 deletions

8
c/string_append_or.c Normal file
View File

@@ -0,0 +1,8 @@
#include <stdio.h>
int main() {
for (size_t i = 0; i < 5; i++)
{
printf("Number is: " + i);
}
}