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
Show 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
#include <stdio.h>
int
main
(
void
)
{
printf
(
"Input a string
\n
"
);
while
(
1
)
{
char
str
[
50
];
scanf
(
"%s"
,
str
);
printf
(
"%s
\n
"
,
str
);
}
return
0
;
}
Please
register
or
login
to post a comment