I am looking for an easy way to convert a MAC address to the corresponding IP address in a local network. In my case, there are only two devices: a very normal PC (192.168.0
How about try the system command arp within c++
arp
system("arp");
This gives you a IP-MAC translation table.