Advertisement
kitch190

c++ functions example 1

Nov 12th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. void stringPrint(string stringIn)
  5. {
  6. cout << stringIn <<endl;
  7. return;//returning void so no value needed here
  8. }
  9.  
  10. int main()
  11. {
  12. string stringIn;
  13. cout << "Enter string" << endl;
  14. cin >> stringIn;
  15. stringPrint(stringIn);
  16. return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement