Début TP13

This commit is contained in:
2023-10-16 14:58:13 +02:00
parent 3dac2edf31
commit 598eb8417e
12 changed files with 103 additions and 0 deletions

View File

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