#include<stdio.h>  
int ma

Loading

โœช 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;
}

A. *pt=’;
B. NULL
C. NULL
D. NULL

Leave a Comment