#include stdio.hFind out the output.struct student{char *name;};void main(){struct student s, m;sname = "st";m = s;printf("%s", .name, mname);}
What will be output of the following#includestdio.hint main(){int a=1;if (--a)printf("Hi") ;elseprintf("bye") ;return 0;}