#include <cstring>
using namespace std;
int main(){
char source[] = "Indonesia is a nice one";
char dest[100]; // you cannot use char *dest;
strcpy(dest, source);
cout << source << endl;
cout << dest << endl;
strcpy(dest, "Will also like this one");
cout << dest << endl;
strcpy(dest, "Will also like this one");
cout << dest << endl;
return 0;
}
No comments:
Post a Comment