#include using namespace std ; int main() { char a[] = "xxxxxxxxxxx" ; char b[] = "Hello World" ; int i=0 ; cout << a << endl ; cout << b << endl ; while ( a[i++] = b[i] ) ; cout << a << endl ; cout << b << endl ; }