C++/Function/Function Recursion

Материал из C\C++ эксперт
Перейти к: навигация, поиск

Principle of recursion by a function

#include <iostream>
using namespace std;
void getput(void);
int main()
{
   cout << "Please enter a line of text:\n";
   getput();
   cout << "\nBye bye!" << endl;
   return 0;
}
void getput()
{
   char c;
   if( cin.get(c)  &&  c != "\n")
      getput();
   cout.put(c);
}