what is the difference between the below declarations?
char *argv[];
and
char *(argv[]);
I think it is same according to spiral rule.
|
what is the difference between the below declarations?
and
I think it is same according to spiral rule. | ||||
|
feedback
|
|
As written, the parentheses make no difference. The so-called spiral rule falls out of this simple fact of C grammar: postfix operators such as So given a relatively complex expression like
it parses as
| |||
|
feedback
|
|
Yes, they are the same.
| |||
|
feedback
|
| |||
|
feedback
|