mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
20 lines
282 B
C
20 lines
282 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]);
|
|
}
|
|
|
|
printf ("\n");
|
|
getchar ();
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|
|
|
|
|