logo

Crowdly

Browser

Add to Chrome

#include<stdio.h> struct st { int x; struct st next; }; int mai...

✅ 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:

More questions like this

Want instant access to all verified answers on lms.aub.edu.lb?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome