- A Compile time error
- B alan
- C Nothing
- D Varies
C Programming Language MCQ Structure in C Language
⚠ Report ✓ Question Verified Copy Link
#include
struct student fun(void)
{
struct student
{
char *name;
};
struct student s;
s.name = "alan";
return s;
}
void main()
{
struct student m = fun();
printf("%s", m.name);
}
Learn More MCQ Questions from C Programming Language MCQ Structure in C Language