1 API函数ShellExecute与ShellExecuteEx用法 超详细
Header | shellapi.h |
Library | Shell32.lib |
DLL | Shell32.dll (version 3.51 or later) |
C++
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
system("time");
return 0;
}
C
#include <stdio.h>
#include<stdlib.h>
int main(int argc, char *argv[])
{
system("time");
return 0;
}