In my course on C++ is used this initialization.
char *a = "abcd";
However, when I use it, a compiler complains:
a value of type "const char*" cannot by used to initialize an entity of type "char*"
*a should be pointer. What is a problem please? I use Visual Studio 2017