Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90625459
string_input.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Nov 3, 09:05
Size
244 B
Mime Type
text/x-c
Expires
Tue, Nov 5, 09:05 (2 d)
Engine
blob
Format
Raw Data
Handle
22110932
Attached To
R9360 PCSC_git
string_input.cpp
View Options
#include <iostream>
#include <string>
int main(int argc, char *argv[]) {
std::string name;
std::cout << "Enter your name and then hit RETURN\n";
std::getline(std::cin, name);
std::cout << "Your name is " << name << "\n";
return 0;
}
Event Timeline
Log In to Comment