I have a string 13/06/07 but i have to convert it into integer and 13 , 06 and 07 has to be separated in c++.
you can use "sscanf" , "man sscanf " for an example . Here i give you a simple Example: char* strTemp = "123,456,789"; int iFisrt = 0; int iSecond = 0; int iThird =0; scannf(strTemp, "%d,%d,%d",&iFirst, &iSecond, &iThird);