19 lines
261 B
C
19 lines
261 B
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <time.h>
|
|
|
|
int main(void) {
|
|
int* p;
|
|
|
|
if(time(NULL)%2) {
|
|
int x = 59;
|
|
p = &x;
|
|
} else {
|
|
int y = 31;
|
|
p = &y;
|
|
}
|
|
printf("x=%d\n", x);
|
|
printf("y=%d\n", y);
|
|
printf("%d\n", *p);
|
|
return 0;
|
|
} |