Forum: C++ Apr 27th, 2006 |
| Replies: 9 Views: 18,104 I actually just figured it out from some other website. It's very simple: while( *outstr++ = *instr++); Thanks very much though! |
Forum: C++ Apr 27th, 2006 |
| Replies: 9 Views: 18,104 Help! I need to copy a char array initialized as a string from one array to another, using a function containing one line of code. Here is the code:
#include <iostream>
using namespace std;... |