Fin TP 14

This commit is contained in:
Simoes Lukas
2024-10-06 17:22:04 +02:00
parent 471e4a7e75
commit 7d319d2d6a
4 changed files with 147 additions and 30 deletions

9
DEV1.1/TP14/tests.c Normal file
View File

@@ -0,0 +1,9 @@
# include <stdio.h>
# include <stdlib.h>
int main(void){
long int n = 4618760256959462783L;
double* p = (double*) &n;
printf("π = %f\n", *p);
return EXIT_SUCCESS;
}