MCQ Practice
Single Best Answer
Topic: Structure in C Language
Q
What is the output of this C code?
#include
struct student
{
char *name;
};
void main()
{
struct student s, m;
s.name = "st";
m = s;
printf("%s%s", s.name, m.name);
}
Subchapter
Structure in C Language
Action
Choose one option below