#includestdio.h#includestring.hstruct player{char pname[20];}pl;char* play(struct player *temp_pl){strcpy(temp_pl-pname, "sookshmas_player1");return temp_pl-pname;}int main(){strcpy(pl.pname, "sookshmas_player2");printf("%s %s", pl.pname, play(&pl));return 0;}
What is the output of the following code?#includestdio.hint main(){char *s ="sookshmas quiz";int n=10;printf("% .s* ",n, s);return 0;}
#include stdio.hint main(){int main = 3;printf("%d", main);return 0;}