Autotools incoporated

This commit is contained in:
2026-09-07 22:53:30 +05:30
parent 00a3d41e39
commit 6daffbffa5
34 changed files with 11569 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
#include <stdio.h>
#define LOWER 0 /* lower limit of table */
#define UPPER 300 /* upper limit */
#define STEP 20 /* step size */
/* print Fahrenheit-Celsius table */
int
main ( ) {
int fahr;
for ( fahr = LOWER; fahr <= UPPER; fahr = fahr + STEP )
printf ( "%3d %6.1f\n", fahr, ( 5.0 / 9.0 ) * ( fahr - 32 ) );
return 0;
}