Skip to content
This repository was archived by the owner on Feb 11, 2021. It is now read-only.

Commit 62f4e22

Browse files
committed
refactor: modify output format
1 parent 1835b9f commit 62f4e22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ int main(int argc, char *argv[])
55
{
66
// start from 1 to ignore script name; argv[0] will be a name of processing file.
77
for (int i = 1; i < argc; i++) {
8-
cout << argv[i] << endl;
8+
printf ("argv[%i]: %s\n", i, argv[i]);
99
}
1010
return 0;
1111
}

0 commit comments

Comments
 (0)