Create a program base on the ff: Introduce int variables x and y and int* pointer variables p and q. Set x to 2, y to 8, p to the address of x, and q to the address of y. Then print the following information: (1) The address of x and the value of x. (2) The value of p and the value of *p. (3) The address of y and the value of y. (4) The value of q and the value of *q. (5) The address of p (not its contents!). (6) The address of q (not its contents!). C language again :D
int main() { int x, y, *p, *q; x=2; y=8; p=&x; q=&y; printf("x addr=%u value=%d\n", &x, x); printf("p=%u *p=%d\n", p, *p); printf("y addr=%u value=%d\n", &y, y); printf("q=%u *q=%d\n", q, *q); printf("p addr=%u \n", &p); printf("q addr=%u \n", &q); }
whats %u?
%u prints the unsigned value.....address is always unsigned
i see, btw, ill try the program first :D
ok try it tell me
it runs :D thank youuu.. please help me on my last problem :D
ok....where's it
????
i posted it already :D
Join our real-time social learning platform and learn together with your friends!