Declare a char array named line suitable for storing C-strings as large as 50 characters, and write a statement that reads in the next line of standard input into this array. (Assume no line of input is 50 or more characters.)
.
.
Click on the title for the solution
.
.
char line[50];
cin.getline(line,50);
.
Click on the title for the solution
.
.
This is the answer:
:
char line[50];
cin.getline(line,50);
Comments
Post a Comment