You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
200 B
C

int counter = 0;
int main(void) {
int *p_int;
p_int = &counter;
while (*p_int < 21) {
++(*p_int);
}
p_int = (int *)0x20000002U;
*p_int = 0xDEADBEEF;
return 0;
}