18 lines
192 B
C
18 lines
192 B
C
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
void foo(void) {
|
|
}
|
|
|
|
int a = 12;
|
|
|
|
int main(void) {
|
|
int b = 0;
|
|
char * a;
|
|
char * c;
|
|
strcpy(a, c);
|
|
|
|
printf("%p, %p, %p\n", &b, &a, foo);
|
|
|
|
return 0;
|
|
}
|