Saturday, July 29, 2017

Write a C++ program that displays your name.

/*
For more exercises and lessons, visit http://shegertech.blogspot.com/  
or shegertech.com
*/

#include <cstdlib>
#include <iostream>
using namespace std;

int main(){
cout<<"My name is Josh"<<endl;
system("PAUSE");
return 0;
}

Share: