Get more info about an IP address or domain name, such as organization, abuse contacts and geolocation.
One of a set of tools we are providing to everyone as a way of saying thank you for being a part of the community.
{
atminit << "test write:";
}
void main()
{
ofstream atminit ("atminit.txt");
if (! atminit.is_open())
{
cout << "error opening atminit.txt, press any key to exit.....";
// getch();
exit (1);
}
else
{
cout << "opened atminit file ok" << endl;
write(atminit );
}
}