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