I'm writing a program to ping an IP.
I must ping a specific address for 1000s
.
Now I want save the TTL to a file to draw it's histogram.
How I can do it? How can I just save the TTL to file?
Here's what I've tried:
#include "stdafx.h"
#include "iostream"
#include "string.h"
#include "stdlib.h"
#include "conio.h"
#include <string>
#include <windows.h>
#include <iostream>
#include <fstream>
using namespace std;
static string host;
static string ping_again;
void ping()
{
cout << "Host: ";
host="www.yahoo.com";
system (("ping " + host).c_str);
}
int main()
{
ping();
return(0);
}