Toggle navigation
Toggle navigation
This project
Loading...
Sign in
임에딘
/
experiment4
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
임에딘
2018-09-28 22:47:00 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
2d6032f0aa8dc82bdfd404cab18a08f9bf63437e
2d6032f0
0 parents
push the echo program
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
echo.c
echo.c
0 → 100644
View file @
2d6032f
#include <stdio.h>
int
main
()
{
char
Name
[
20
];
printf
(
"당신의 이름을 입력하세요: "
);
gets
(
Name
);
puts
(
Name
);
return
0
;
}
\ No newline at end of file
Please
register
or
login
to post a comment