Toggle navigation
Toggle navigation
This project
Loading...
Sign in
정대욱
/
test2
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
정대욱
2019-10-04 20:41:44 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3a781c3843828e779e1e8fce9e20b8a4917f5389
3a781c38
1 parent
9e6820d0
echo
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
echo.cpp
echo.cpp
0 → 100644
View file @
3a781c3
#include <iostream>
int
main
()
{
char
buffer
[
256
];
std
::
cout
<<
"Hello! Please enter some text:
\n
>> "
;
while
(
std
::
cin
>>
buffer
)
{
std
::
cout
<<
buffer
<<
std
::
endl
;
std
::
cout
<<
">> "
;
}
return
0
;
}
\ No newline at end of file
Please
register
or
login
to post a comment