ch19_10.cpp
Upload User: puke2000
Upload Date: 2022-07-25
Package Size: 912k
Code Size: 0k
Category:

CSharp

Development Platform:

Visual C++

  1. //***********************
  2. //**    ch19_10.cpp    **
  3. //***********************
  4. #include <iostream.h>
  5. void main()
  6. {
  7.   char str[128];
  8.   cout <<"Type in a line of text and press Enter" <<endl;
  9.   cin.getline(str, sizeof(str), 'X');
  10.   cout <<"First line: " <<str <<endl;
  11.   cin.getline(str, sizeof(str));
  12.   cout <<"Second line: " <<str;
  13. }