#include <stdio.h> int a; int b = 1; int main() { printf("&a = %p, &b = %p\n", &a, &b); return 0; }
Done