mirror of
https://gitlab.com/blau_araujo/cblc.git
synced 2025-05-09 18:16:37 -03:00
13 lines
158 B
C
13 lines
158 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int b = 0x5a;
|
||
|
|
||
|
int main(void) {
|
||
|
int a = 0x58;
|
||
|
|
||
|
printf("a: %d @ %p\n", a, &a);
|
||
|
printf("b: %d @ %p\n", b, &b);
|
||
|
|
||
|
return 0;
|
||
|
}
|