Hi, my Name is Jean and I need help to compiler a source to an executable (rbatfile.exe) for DEC Alpha 21064 APX on windows NT 4.0 SP6. ________________________________________________ This mail was sent by Webmail Expresso 2.5
#include <stdio.h> #include <string.h> main(argc,argv) int argc; char *argv[]; { // launch a bat file for GPost spwnf char s1[280]; int i; // get arg //printf(" argc=%d\n",argc); strcpy(s1,argv[1]); for (i=3;i<=argc;i++) { strcat(s1," "); strcat(s1,argv[i-1]); } //printf(" s1=%s\n",s1); // fire it system(s1); }