DEV/DEV1.1/TP14/cartographie.c

24 lines
379 B
C
Raw Permalink Normal View History

2024-10-07 17:30:04 +02:00
#include <stdlib.h>
#include <stdio.h>
int main(void){
float a;
double b;
long double c;
char d;
short int e;
int f;
unsigned long int g;
float* A =&a;
double* B =&b;
long double* C= &c;
char* D= &d;
short int* E = &e;
int* F= &f;
unsigned long int* G= &g;
printf("%p\n %p\n %p\n %p\n %p\n %p\n %p\n", A, B,C,D,E,F,G);
return EXIT_SUCCESS;
}