12 lines
151 B
C

#include <stdio.h>
int main(void)
{
int x, y;
x = 5;
printf("x = %d\n", x);
printf("Adressen till x är %lu\n", &x);
return 0;
}