C/C++
standc.asc
Associated article: Standard C: An Update
Tags: C/C++
_STANDARD C: AN UPDATE_
by Rex Jaeschke
Example 1:
extern int n;
void f(int m, int x[m][n])
{
char c[m];
int (*p)[n];
}
Example 2:
(a)
int i[20] = {5, 10, [17] = 50, 60};
(b)
enum color { red, green, blue };
unsigned int total[] = {
[red] = 100,
[blue] = 200,
[...


