1 const int* a; 2 int* const b; 3 int* restrict c; 4 const int* restrict d; 5 int* restrict const e; 6 int* const restrict f; 7