first commit!

This commit is contained in:
2025-02-06 12:54:34 +02:00
commit 37f9a3d138
24 changed files with 693 additions and 0 deletions

13
fahrcelcdefine.c Normal file
View File

@ -0,0 +1,13 @@
#include <stdio.h>
#define LOWER 0
#define UPPER 300
#define STEP 20
int main() {
int fahr;
for (fahr = LOWER; fahr <= UPPER; fahr += STEP) {
printf("%3d %6.1f\n", fahr, (5.0/9) * (fahr - 32));
}
}