turbo c++

hi can somebody tell me how can i write my first name middle name and last name in turbo c++.
Thank you

1
2
3
4
5
6
7
8
9
10
11
#include <iostream>

using namespace std;

int main() {
  cout << "your first name";
  cout << "your middle name";
  cout << "your last name";
  system("pause");
  return 0;
}


Tutorials for beginnner: http://www.cplusplus.com/doc/tutorial/
Last edited on
Topic archived. No new replies allowed.