mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-26 02:17:34 +09:00
13 lines
159 B
C++
13 lines
159 B
C++
|
|
#include <stdio.h>
|
||
|
|
|
||
|
|
void check(int* h, long* k) {
|
||
|
|
*h = 1;
|
||
|
|
*k = 0;
|
||
|
|
printf("%d\n", *h);
|
||
|
|
}
|
||
|
|
|
||
|
|
int main(void) {
|
||
|
|
long k;
|
||
|
|
check((int*)&k, &k);
|
||
|
|
return 0;
|
||
|
|
}
|