mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
17 lines
246 B
C
17 lines
246 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int main (int argc, char* argv[])
|
||
|
{
|
||
|
int I;
|
||
|
|
||
|
printf ("argc: %d\n", argc);
|
||
|
for (I = 0; I < argc; ++I) {
|
||
|
printf ("argv[%2d]: \"%s\"\n", I, argv[I]);
|
||
|
}
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|
||
|
|
||
|
|
||
|
|