The const pointer modifications

Question | Apr 22, 2016 | hkumar 

Consider this C++ code:

char str[] = "Parks is green";
// Pay attention to the position of const keyword below
const char* ccPtr = str;
char* const cpPtr = str;

Which one of followings would not compile?