logo

Crowdly

Browser

Add to Chrome

int main() { char *s1 = (char *)malloc(50); char *s2 = (char *)malloc(50...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

int main()

{

char *s1 = (char *)malloc(50);

char *s2 = (char *)malloc(50);

strcpy(s1, "Geeks");

strcpy(s2, "Quiz");

strcat(s1, s2);

printf("%s", s1);

return 0;

}

Output of following C program? Assume that all necessary header files are included 

More questions like this

Want instant access to all verified answers on lms.aub.edu.lb?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome