22 lines
373 B
C
22 lines
373 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main(int argc, char const *argv[])
|
|
{
|
|
float a = 1;
|
|
double b = 1;
|
|
long double c = 1;
|
|
char d = '1';
|
|
short int e = 1;
|
|
int f = 1;
|
|
long long unsigned int g = 1;
|
|
|
|
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 0;
|
|
} |