Toggle navigation
Toggle navigation
This project
Loading...
Sign in
홍용민
/
os_git_branch
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
홍용민
2021-04-01 19:27:34 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
59de9f13a8f9bf7fea8636f48ed62458d65ad2c5
59de9f13
0 parents
echo program
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 @
59de9f1
1
+
#include<iostream>
2
+
using
namespace
std
;
3
+
4
+
int
main
()
{
5
+
char
c
;
6
+
7
+
cout
<<
"Enter a character -> "
;
8
+
cin
>>
c
;
9
+
10
+
cout
<<
"you enter
\"
"
<<
c
<<
"
\"
"
<<
endl
;
11
+
12
+
return
0
;
13
+
}
...
\ No newline at end of file
...
\ No newline at end of file
Please
register
or
login
to post a comment