what will be the value of x for the following code snippet?
char str1[]="dills";
char str2[20]="hello";
char str3[]="daffo";
int x;
x=strcmp("daffofills",strcat(str3,strcpy(str1,str2)));
Answers
Answered by
0
Daffodills,daffodillshello
Hope it helps
Similar questions