Question:
What is LPCTSTR? What does LP denote it?
Answer:
LPCTSTR denotes "Long Pointer Const to String". Declaration can be written as const long* str[];LP denotes Long Pointer. Source: CoolInterview.com
LPCTSTR = Long Pointer to a Const TCHAR String
LPCTSTR = const char* or const wchar_t* depending on _UNICODE
LP - LONG POINTER Source: CoolInterview.com
Answered by: Nutan | Date: 9/11/2008
| Contact Nutan
If you have the better answer, then send it to us. We will display your answer after the approval.
Rules to Post Answers in CoolInterview.com:-
- There should not be any Spelling Mistakes.
- There should not be any Gramatical Errors.
- Answers must not contain any bad words.
- Answers should not be the repeat of same answer, already approved.
- Answer should be complete in itself.
|