You are on page 1of 1

#include <iostream> #include <cstring> using namespace std;

int main() { char info[25];

strcpy(info, "Nama: David Beckam"); cout << info;

cout << endl;

strcpy(info, "Info: Pemain sepakbola"); cout << info;

return 0; }

You might also like