Toggle navigation
Toggle navigation
This project
Loading...
Sign in
kykint
/
OSS_Experiments04_Assignment2
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
kykint
2019-03-29 11:33:11 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
0625f9430262d871881bea29de61a4e65b8f5aa6
0625f943
0 parents
Initial implementation
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
echo.c
echo.c
0 → 100644
View file @
0625f94
1
+
#include <stdio.h>
2
+
3
+
int
main
(
void
)
{
4
+
printf
(
"Input a string
\n
"
);
5
+
6
+
while
(
1
)
{
7
+
char
str
[
50
];
8
+
scanf
(
"%s"
,
str
);
9
+
printf
(
"%s
\n
"
,
str
);
10
+
}
11
+
12
+
return
0
;
13
+
}
14
+
Please
register
or
login
to post a comment