Compiler

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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);
}

[Index of Archives]     [Linux C Programming]     [Linux Kernel]     [eCos]     [Fedora Development]     [Fedora Announce]     [Autoconf]     [The DWARVES Debugging Tools]     [Yosemite Campsites]     [Yosemite News]     [Linux GCC]

  Powered by Linux