Skip to content

Commit 6d72776

Browse files
committed
inserted correct placeholder
1 parent 8e1911c commit 6d72776

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

0x0A-argc_argv/1-args.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
int main(int argc, char *argv[])
1414
{
1515
UNUSED(argv);
16-
printf("%s\n", argc - 1);
16+
printf("%d\n", argc - 1);
1717
return (0);
1818
}

0 commit comments

Comments
 (0)