- #include <stdio.h>
- void main(void)
- {
- int a = 1, b = 2, c = 3;
- printf("The address of a is %x the value of a is %dn", &a, a);
- printf("The address of b is %x the value of b is %dn", &b, b);
- printf("The address of c is %x the value of c is %dn", &c, c);
- }
English
