This repository has been archived on 2026-03-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
pants/c/print.c
2026-03-18 00:46:30 -07:00

12 lines
215 B
C

#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;
}