mirror of
https://gitlab.com/blau_araujo/cblc.git
synced 2025-05-10 02:26:36 -03:00
12 lines
158 B
C
12 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;
|
|
}
|