Getting to the way it's supposed to be!

This commit is contained in:
2024-10-12 00:43:51 +02:00
parent 84729f9d27
commit 8f2dad9cec
2663 changed files with 540071 additions and 14 deletions

View File

@@ -0,0 +1,12 @@
#include <stdio.h>
#include <math.h>
#include <stdlib.h>
int main(int argc, char **argv)
{
if (argc > 1) {
float val = (float)atof(argv[1]);
printf("sin(%.2f) = %.2f\n", val, sinf(val));
}
return 0;
}