C Programming
char* myfunc(char *ptr){ ptr+=3; return(ptr);}void main(){ char *x, *y; x = "EXAMVEDA"; y = myfunc(x); printf("y=%s", y);}What will be printed when the sample code above is executed?

y=EXAMIANS
y=MVEDA
y=EDA
y=AMVEDA
y=VEDA

ANSWER DOWNLOAD EXAMIANS APP

C Programming
String concatenation means -

Merging two strings.
Combining two strings.
Partitioning the string into two strings.
Extracting a substring out of a string.
Comparing the two strings to define the larger one.

ANSWER DOWNLOAD EXAMIANS APP