Translations:Development/Tutorials/Common Programming Mistakes/36/en

From KDE TechBase
// Correct!
static const char SomeString[] = "Example";
// Wrong!
static const char* SomeString = "Example";
// Wrong!
#define SomeString "Example"