mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-15 03:06:08 +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;
|
||
|
}
|