What will be the output of this  code

#include stdio.h
#includestring.h
void solve() {
char s[] = "sookshamas";
printf("%s ", s);
char t[40];
strcpy(t, s);
printf("%s", t);
}
int main() {
solve();
return 0;
}


Posted on by