Synopsis: | The address of an array declared with register is undefined and shall not be used. |
Language: | C |
Severity Level: | 2 |
Category: | DECLARATIONS |
Description: |
Both auto and register clutter up declarations if they are not required, and they do not add information to the code.
Example: register int a[3]; int b; ... b = a[1]; /* WRONG, implicitly takes address */ |