cpp example code
Example 1: Simple cpp code
#include<iostream>
using namespace std;
int main()
{
cout << " hello world <<endl;
return 0;
}
Example 2: cpp sample code
#include<iostream>
using namespace std;
int main()
{
cout << " hello world" <<endl;
return 0;
}