Introduction of C++

#include <iostream >
using namespace std;
int main()
{
    cout << "This is your first C++ Program" << "\n";
    system("pause");
    return 0;
}



The Output is Given Below:
This is your first C++ Program

0 comments:

Post a Comment