Consider the following C program: #include void stringcopy(char *, char *); int main() char a[30] = "@#Hello World!"; stringcopy(a, a + 2); printf("%s ", a); return 0; void stringcopy(char *s, char *t) while(*t) *s++ = *t++; Which ONE of the following will be the output of the program?
Topic-wise GATE CS PYQs with verified steps
