10 lines
87 B
C
10 lines
87 B
C
#include <stdio.h>
|
|
|
|
int main(void)
|
|
|
|
{
|
|
int n = 50;
|
|
int *p = &n;
|
|
printf("%p\n", p);
|
|
}
|