A.
#include int main() { char str[20]; strcpy(str,"hello"); }
B.
#include int main() { char s[20]="hello",str[20]; strcpy(str,s); }
C.
#include int main() { char *p="hello",str[20]; strcpy(str,p); }
D.
#include int main() { char s[20]="hello",str[20]; str=s; }