首页 » c++
c++获取软件运行目录[源码]
#include <iostream> #include <direct.h> #include <cstdio> using namespace std; int main(void) { char buff[1000]; getcwd(buff, 1000); cou...
热门
C++写windows系统服务示例[源码]
直接上代码!#include <stdio.h> #include <iostream> #include <windows.h> #include <tchar.h> //*注意:程序编译后请用CMD通过以下命令注册、启动、卸载服务,不是直接双击运行 //*注意:生成时请用Release目录...
热门