Beh ... non e' difficile ... potresti comunque provarci ...

Includi

codice:
#include <windows.h>
e poi usi

codice:
  STARTUPINFO si;
  PROCESS_INFORMATION pi;

  ZeroMemory(&si, sizeof(si));
  si.cb = sizeof(si);

  CreateProcess(NULL, "C:\\Windows\\System32\\Calc.exe", NULL, NULL, TRUE, 0, NULL, NULL, &si, &pi);