Changeset 2209 for trunk/docsrc/declaration.dd
- Timestamp:
- 12/06/10 18:12:22 (1 year ago)
- Files:
-
- trunk/docsrc/declaration.dd (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/docsrc/declaration.dd
r2163 r2209 257 257 -------------------- 258 258 259 $(P 260 C-style array declarations may be used as an alternative: 259 $(P 260 $(V1 C-style array, function pointer and pointer to array declarations are possible as an alternative:) 261 $(V2 C-style array, function pointer and pointer to array declarations are deprecated:) 261 262 ) 262 263 … … 264 265 int x[3]; // x is an array of 3 ints 265 266 int x[3][5]; // x is an array of 3 arrays of 5 ints 266 --------------------267 268 $(P269 C-style function pointer and pointer to array declarations are deprecated:270 )271 272 --------------------273 267 int (*x[5])[3]; // x is an array of 5 pointers to arrays of 3 ints 274 268 int (*x)(char); // x is a pointer to a function taking a char argument
