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
15 lines
200 B
C
|
5 years ago
|
int counter = 0;
|
||
|
|
|
||
|
2 years ago
|
int main(void) {
|
||
|
5 years ago
|
int *p_int;
|
||
|
|
p_int = &counter;
|
||
|
|
while (*p_int < 21) {
|
||
|
|
++(*p_int);
|
||
|
|
}
|
||
|
|
|
||
|
|
p_int = (int *)0x20000002U;
|
||
|
|
*p_int = 0xDEADBEEF;
|
||
|
|
|
||
|
|
return 0;
|
||
|
|
}
|