โช Choose the correct option.
#include
int main() {
char s[] = "Hello";
char t[25];
char *ps, *pt;
ps = s;
pt = t;
while(*ps) {
*pt++ = *ps++;
}
/* Add a statement here */
printf("%s ", t);
return 0;
}
#include
int main() {
char s[] = "Hello";
char t[25];
char *ps, *pt;
ps = s;
pt = t;
while(*ps) {
*pt++ = *ps++;
}
/* Add a statement here */
printf("%s ", t);
return 0;
}