Main Program: Initial Outputs

Next, we echo the command entered back to the terminal, and then output any parsed variables values.
  printf("# command: ");
  for (i=0;i<argc;i++) printf("%s ",argv[i]);
  printf("\n");
  printf("# ISING simulation, NVT Metropolis Monte Carlo\n");
  printf("# L = %i, T = %.3lf, nCycles %i, fSamp %i, Seed %lu\n",
	  L,T,nCycles,fSamp,Seed);



cfa22@drexel.edu