2
#include <iostream>
#include <stdio.h>
#include <string.h>
using namespace std;
int main()
{
char a[]="one string",b[]="twostrings";
strcpy (a,b);
cout<<"A="<<a;
cout<<endl<<"B="<<b<<endl;
}
a和b是顯示他們之後平等的,但如果我把一個空間,這樣b[]="two strings"
,然後COUT B,它顯示了B中的空白,爲什麼呢?的strcpy源未顯示