mirror of
https://github.com/Kitware/CMake.git
synced 2025-06-22 04:21:19 +08:00
12 lines
156 B
C
12 lines
156 B
C
#include <stdio.h>
|
|
|
|
int main(int argc, const char* argv[])
|
|
{
|
|
int i = 0;
|
|
for (; i<argc; ++i)
|
|
{
|
|
fprintf(stdout, "%s\n", argv[i]);
|
|
}
|
|
return 0;
|
|
}
|