Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Maxime.Missichini
git-INSA-21-22-ex3-c
Commits
ca51fda6
Commit
ca51fda6
authored
Mar 09, 2022
by
Maxime.Missichini
Browse files
Update hello.c
parent
5cc5032e
Pipeline
#23170
failed with stage
in 5 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
hello.c
View file @
ca51fda6
...
...
@@ -7,7 +7,7 @@ void main(int argc, char* argv[]) {
printf
(
"Hello %s!
\n
"
,
argv
[
1
]);
else
{
printf
(
"Hello "
);
printf
(
argv
[
1
]);
printf
(
"%s"
,
argv
[
1
]);
for
(
int
i
=
2
;
i
<
argc
;
i
++
)
printf
(
", %s"
,
argv
[
i
]);
printf
(
"!
\n
"
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment