/* gcl.c, Get and print the command line. * This program can be used to deterime how cmd.exe and PowerShell parsing differ. * * To build: * cl gcl.c /link kernel32.lib */ #include "Windows.h" main() { printf("%s\n", GetCommandLine()); }