my problem is to break up the string ..
for example 1234567890
my output will be 12 34 56 78 90
how can i make it like tat?
This is a discussion on split string within the C++ Programming forums, part of the General Programming Boards category; my problem is to break up the string .. for example 1234567890 my output will be 12 34 56 78 ...
my problem is to break up the string ..
for example 1234567890
my output will be 12 34 56 78 90
how can i make it like tat?
Output your string one character at a time. If it's an even character number, add a space.
hth
-nv
She was so Blonde, she spent 20 minutes looking at the orange juice can because it said "Concentrate."
When in doubt, read the FAQ.
Then ask a smart question.
thnx mate....