c++ Language All programs A to Z

(1)Print any Name

#include<iostream>using namespace std;int main()
{
cout<<"Hello C++";
return 0;
}

//OUTPUT
Hello C++
c++ All programs

Comments