123
string ip("192.168.1.1"); // how to convert? ......
192 168 1 1
if( c=='.' ) std::cout<<' ';
1234
#include <algorithm> string ip("192.168.1.1"); replace(ip.begin(), ip.end(), '.', ' ');