Skip to content

Commit 9432b82

Browse files
authored
beginners hello :D
1 parent a072097 commit 9432b82

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

HelloBeginners.c

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#include <stdio.h>
2+
3+
int main(int argc, char **argv)
4+
{
5+
if (argc > 1)
6+
printf("Hello beginners %s\n", argv[1]);
7+
return 0;
8+
}

0 commit comments

Comments
 (0)