This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Error : non-address/-constant initializer

Why below line of code is not compiling successfully?
const unsigned char *a[]={
  "Hello",
   "Hi"
};

const unsigned char *b[]={
  a[0],
   a[1]
};