# include # include int main ( ) { float a = 1.0; float *ap; float b = 2.0; float *bp; float c = 3.0; float *cp; double d = 4.0; double *dp; double e = 5.0; double *ep; double f = 6.0; double *fp; char g = '7'; char *gp; char h = '8'; char *hp; char i = '9'; char *ip; int j = 10; int *jp; int k = 11; int *kp; int l = 12; int *lp; bool m = true; bool *mp; bool n = false; bool *np; bool o = false; bool *op; ap = &a; bp = &b; cp = &c; dp = &d; ep = &e; fp = &f; gp = &g; hp = &h; ip = &i; jp = &j; kp = &k; lp = &l; mp = &m; np = &n; op = &o; printf ( " Value of A = %g, Address of A = %p\n", a, ap ); printf ( " Value of B = %g, Address of B = %p\n", b, bp ); printf ( " Value of C = %g, Address of C = %p\n", c, cp ); printf ( "\n" ); printf ( " Value of D = %g, Address of D = %p\n", d, dp ); printf ( " Value of E = %g, Address of E = %p\n", e, ep ); printf ( " Value of F = %g, Address of F = %p\n", f, fp ); printf ( "\n" ); printf ( " Value of G = %c, Address of G = %p\n", g, gp ); printf ( " Value of H = %c, Address of H = %p\n", h, hp ); printf ( " Value of I = %c, Address of I = %p\n", i, ip ); printf ( "\n" ); printf ( " Value of J = %i, Address of J = %p\n", j, jp ); printf ( " Value of K = %i, Address of K = %p\n", k, kp ); printf ( " Value of L = %i, Address of L = %p\n", l, lp ); printf ( "\n" ); printf ( " Value of M = %i, Address of M = %p\n", m, mp ); printf ( " Value of N = %i, Address of N = %p\n", n, np ); printf ( " Value of O = %i, Address of O = %p\n", o, op ); return 0; }