aboutsummaryrefslogtreecommitdiff
path: root/semestre 3/architecture des ordinateurs/tme/tme2/exo2/q3.c
blob: 00e032568e7f5ef2864d6d8ab95772c6e3552bdb (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>

/* premier nombre est 1103888384 */
/* deuxième est  */
int main(){
    int i;
    scanf("%d", &i);
    printf("%f\n", *((float*) &i));
    return 0;
}