fork download
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4. void showNAME(char NAME[]);
  5. //A c_String is a null-terminated charactered Array.
  6. int main() {
  7. const int SIZE = 25;
  8. char NAME[SIZE];
  9. cout<< "Enter your name: ";
  10. cin.getline(NAME,SIZE);
  11. showNAME(NAME);
  12. return 0;
  13. }
  14. void showNAME(char NAME[])
  15. {
  16. cout<<NAME<<endl;
  17.  
  18. }
  19.  
Success #stdin #stdout 0s 5284KB
stdin
Hello my name is Tom Lee! 
stdout
Enter your name: Hello my name is Tom Lee