mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-10 22:06:05 +00:00
11 lines
144 B
C
11 lines
144 B
C
#include <stdio.h>
|
|
|
|
int
|
|
main(int argc, char** argv)
|
|
{
|
|
for (int i = 0; i < argc; i++) {
|
|
printf("%d: %s.\n", i, argv[i]);
|
|
}
|
|
return 0;
|
|
}
|