int main(void){ float A; float B; float C; float D; A = 1.2f; B = 2.3f; C = 3.4f; D = B + C; return 0;}
printf("&A=%p, &B=%p, &C=%p, &D=%p\n", &A, &B, &C, &D);