What will be the output of the following C code?
#include
typedef struct student
{
char *a;
}stu;
void main()
{
struct student s;
s.a = "hey";
printf("%s", s.a);
}
Answer: D
No answer description available for this question.