C Programming
What will be the output of the program ?#include#includevoid main(){ char str1[20] = "Hello", str2[20] = " World"; printf("%s", strcpy(str2, strcat(str1, str2)));}

Hello
None of these
WorldHello
Hello World
World

ANSWER DOWNLOAD EXAMIANS APP

C Programming
Use of functions

Helps to avoid repeating a set of statements many times.
Makes the debugging task easier.
Enhances the logical clarity of the program.
Helps to avoid repeated programming across programs.
All of these

ANSWER DOWNLOAD EXAMIANS APP