Revision 27b0d908d46aaffe7df29e32e1b7ddbbd50c983f authored by Robert Maynard on 06 February 2020, 03:24:37 UTC, committed by Brad King on 06 February 2020, 14:41:24 UTC
1 parent c3d7f2e
Raw File
test2.cxx
#include <stdio.h>
int test2(int ac, char* av[])
{
  printf("test2\n");
  for (int i = 0; i < ac; i++)
    printf("arg %d is %s\n", ac, av[i]);
  return 0;
}
back to top