turbo c++

Apr 13, 2014 at 4:31am
hi can somebody tell me how can i write my first name middle name and last name in turbo c++.
Thank you

Apr 13, 2014 at 4:36am
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 Apr 13, 2014 at 4:36am
Topic archived. No new replies allowed.