✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
#include<stdio.h>
struct st
{
int x;
struct st next;
};
int main()
{
struct st temp;
temp.x = 10;
temp.next = temp;
printf("%d", temp.next.x);
return 0;
}
Choose the correct output from the options given below: