It looks like you're new here. If you want to get involved, click one of these buttons!
// MyProg
int main()
{
...
}
#include <iostream>
int main()
using namespace std;
cout << \"Hello iExploit\";
cout << endl;
cout << \"This is a Hello world program\" << endl;
return 0;
}
Hello iExploit
This is a Hello world program
#include <iostream>
int main()
{
using namespace std;
cout << \"Hello iExploit\";
cout << endl;
cout << \"This is a hello world program\" << endl;
return 0;
}
g++ -o myprog myprog.c
./myprog
std::cout >> \"Hello world >> std::endl;