This commit is contained in:
2024-01-22 14:41:15 +01:00
parent a00408d732
commit df2701109f
15 changed files with 110 additions and 71 deletions
+3 -3
View File
@@ -5,10 +5,10 @@ FILE *fp;
char c;
int a;
int oldmain(){
int oldmain() {
fp = fopen("test.txt", "r");
while (!feof(fp)){
while (!feof(fp)) {
c = fgetc(fp);
printf("%c", c);
}
@@ -16,7 +16,7 @@ int oldmain(){
printf("\nSEPARATOR\n\n");
for (uint8_t i = 0;i<=10;i++){
for (uint8_t i = 0; i <= 10; i++) {
printf("hello %i times\n", i);
}