Advertisement
ivanwidyan

Program That Prints Out Your Name

Oct 14th, 2016
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.14 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.     cout << "My name is Ivan" << endl;
  6.     system("pause");
  7. }
  8.  
  9. Result:
  10. My name is Ivan
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement