What is the output of this program?
#include
void main()
{
struct number
{
int no;
char name[20];
};
struct number s;
s.no = 50;
printf("%d", s.no);
}
Answer: D
No answer description available for this question