Given the following declaration
char a[ ] = "cba', *p=a;
what is the difference between the values of te expression ++*p and *++P?
2006-08-31
14:38:28
·
2 answers
·
asked by
Anonymous
in
Computers & Internet
➔ Programming & Design
The options I have are:
a. The first is equal to d, and the second one is equal to b.
b. The first is equal to c, and the second one is equal to a.
c. The first causes a complier error, while the second does not
d. The two expressions have the same value.
2006-08-31
15:14:40 ·
update #1