Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

get function in cpp.

ifstream outfile ("myfile.txt");
char ch;

while(outfile)
{
  outfile.get(ch);
  cout << ch;
}
 
PREVIOUS NEXT
Tagged: #function
ADD COMMENT
Topic
Name
6+9 =