hello, do you know what could be the problem in this code? like "memory override" and other stuff? and what do you think this code will print (with the current problem)? #include #include struct Oy{ char a[5]; char b[4]; }; void main() { struct Oy vey; char* t = vey.a; strcpy(vey.a, "like"); strcpy(vey.b, "C"); strcpy(t, "what could go wrong?"); printf("Hello, %s%s\n",vey.a,vey.b); } i'll be v glad if you helped me, at least one of the questions.