This commit is contained in:
2025-07-02 00:07:49 -07:00
commit c208c6b35d
114 changed files with 71862 additions and 0 deletions

11
c/print.c Normal file
View File

@ -0,0 +1,11 @@
#include <stdio.h>
int main() {
// char string[21] = "this is a char array";
for (float i = 0; i < 100; i += 0.0001) {
// printf(string);
printf("number incoming: %f\n",i);
// printf("\n");
}
return 0;
}