Programming Tips - How do I get the name of the current program?

Date: 2008jun10 Language: C/C++ OS: Windows Platform: win32 Q. How do I get the name of the current program? A. Use GetModuleFileName with NULL as the first parameter. For example:
char szMe[MAX_PATH]; GetModuleFileName(NULL, szMe, sizeof(szMe));