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