A better BinaryConverter function in C++
I have this code for a binary converter function in C++...can u suggest
better way of doing it or improvements in this code...I guess there might be
better way of doing the same
Thanx in advance...
-Gov
//////////////////////////////////////////////////////////////////////////////////////////
string ConvertToBinary(string Msg)
{
const char * pCMsg=new char[Msg.size())];
pCMsg=Msg.c_str();
bool pMsg;
string Path;
ofstream BFile;
cout<<"Enter Path:: ";
cin>>Path;
const char * pPath=new char[Path.size()];
pPath=Path.c_str();
BFile.open (pPath);
for(int i=0;i<Msg.size();i++)
{
if(pCMsg[i] & 0x80) //0x80=10000000
pMsg=1;else pMsg=0;BFile<<pMsg;
if(pCMsg[i]&0x40) //0x40=01000000
pMsg=1; else pMsg=0;BFile<<pMsg;
if(pCMsg[i]&0x20) //0x20=00100000
pMsg=1;else pMsg=0;BFile<<pMsg;
if(pCMsg[i]&0x10) //0x10=00010000
pMsg=1;else pMsg=0;BFile<<pMsg;
if(pCMsg[i]&0x8) //0x8=00001000
pMsg=1;else pMsg=0;BFile<<pMsg;
if(pCMsg[i]&0x4) //0x4=00000100
pMsg=1;else pMsg=0;BFile<<pMsg;
if(pCMsg[i]&0x2) //0x2=00000010
pMsg=1;else pMsg=0;BFile<<pMsg;
if(pCMsg[i]& 0x1) //0x1=00000001
pMsg=1;else pMsg=0;BFile<<pMsg;
}
delete pCMsg;
delete pPath;
BFile.close();
return Path;
}