mirror of
https://gitlab.com/blau_araujo/cblc.git
synced 2025-05-10 10:36:37 -03:00
16 lines
238 B
C
16 lines
238 B
C
|
#include <stdio.h>
|
||
|
|
||
|
|
||
|
int main(void) {
|
||
|
|
||
|
int a = 17;
|
||
|
int b = 25;
|
||
|
|
||
|
puts("Var Address Size Value");
|
||
|
|
||
|
printf("a -> %p %4zu %5d\n", &a, sizeof(a), a);
|
||
|
printf("b -> %p %4zu %5d\n", &b, sizeof(b), b);
|
||
|
|
||
|
return 0;
|
||
|
}
|