Answers for "getline c++ file"

C++
13

get line C++

// extract to string
#include <iostream>
#include <string>

int main ()
{
  std::string name;

  std::cout << "Please, enter your full name: ";
  std::getline (std::cin,name);
  std::cout << "Hello, " << name << "!n";

  return 0;
}
Posted by: Guest on November-16-2019
0

getline of file C++

ifstream inFile;
string name;
int age;

inFile.open("file.txt");

getline(inFile, name); 
inFile >> age; 

cout << name << endl;
cout << age << endl;  

inFile.close();
Posted by: Guest on October-09-2020
0

getline limit input

string text;
getline(cin, text);
text = text.substr(0, 100);
Posted by: Guest on September-22-2020

Browse Popular Code Answers by Language