Почему резкие цитаты лямбда-выражений?

int *a[4]; // Array of 4 pointers to int

int (*a)[4]; //a is a pointer to an integer array of size 4

int (*a[8])[5]; //a is an array of pointers to integer array of size 5 
13
задан Community 13 April 2017 в 22:52
поделиться