Write a C++ program that displays your name. Josh July 29, 2017 cpp exercise /* 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: Email ThisBlogThis!Share to TwitterShare to Facebook