Write the output of the following code snippet. *
2 points
Captionless Image
Answers
Answered by
2
Answer:
#include<stdio.h>
#include<string.h>
void main()
{
char s1[20]=”Hello”, s2[20]=”Mr.Benz”;
print(“%s \n”,strcpy(s2,strcat(s1,s2));
}
Similar questions