Use this tag for questions related to the LPCSTR data type.
LPCSTR
is a common data type used in Windows programming for representing strings. Its name is an acronym that stands for Long Pointer to Const String. From the corresponding MSDN page:
An LPCSTR is a 32-bit pointer to a constant null-terminated string of 8-bit Windows (ANSI) characters.
This type is declared as follows:
typedef const char* LPCSTR;