#include stdio.h
#includestring.h
void solve()
{
char s[] = "GMIT";
printf("%s ", s);
char t[40];
strcpy(t, s);
printf("%s", t);
}
int main() {
solve();
return 0;
}
Output of the code snippet will be?

Posted on by