19 lines
356 B
C
19 lines
356 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
int main(void){
|
|
float a= 2.5;
|
|
double b = 3.5;
|
|
long double c = 85.8;
|
|
char d = 48;
|
|
short int e = 3;
|
|
int f = 8;
|
|
long long unsigned int g = 48;
|
|
printf("%p\n", &a);
|
|
printf("%p\n", &b);
|
|
printf("%p\n", &c);
|
|
printf("%p\n", &d);
|
|
printf("%p\n", &e);
|
|
printf("%p\n", &f);
|
|
printf("%p\n", &g);
|
|
return EXIT_SUCCESS;
|
|
} |