mirror of
https://gitcode.com/Zengtudor/alg2025.git
synced 2025-09-04 09:10:35 +00:00
10 lines
151 B
C++
10 lines
151 B
C++
#include <cstdio>
|
|
int main(){
|
|
int a=0;
|
|
char* c = (char*)&a;
|
|
c[0]=0x1f;
|
|
c[1]=0x1f;
|
|
c[2]=0x1f;
|
|
c[3]=0x1f;
|
|
printf("%d\n",a);
|
|
} |