Examveda

What will be the output of the following C code?
#include <stdio.h>
struct p
{
   struct p *next;
   int x;
};
int main()
{
   struct p* p1 = malloc(sizeof(struct p));
   p1->x = 1;
   p1->next = malloc(sizeof(struct p));
   printf("%d\n", p1->next->x);
   return 0;
}

A. Compile time error

B. 1

C. Somegarbage value

D. 0

Answer: Option C


This Question Belongs to C Program >> File Input Output

Join The Discussion

Related Questions on File Input Output