5 lines
61 B
C
5 lines
61 B
C
|
int main()
|
||
|
{
|
||
|
int* ptr = (int*)0xdeadbeef;
|
||
|
*ptr = 6;
|
||
|
}
|