+ 3
Explain the following code
#include<stdio.h> #include<string.h> struct player { char pname[20]; }pl; char* play(struct player *temp_pl) { strcpy(temp_pl->pname, "kohli"); return temp_pl->pname; } int main() { strcpy(pl.pname, "dhoni"); printf("%s %s", pl.pname, play(&pl)); return 0; }
0 odpowiedzi