#include <alloca.h>
#include <stdlib.h>
#include <stdio.h>

int main(int argc, char **argv)
{
   char *s = alloca(200);

   sprintf(s, "argc = %d", argc);

   exit(0);
}
