Examveda

What will be the output of the following C code?
#include <stdio.h>
struct p
{
    int x;
    char y;
};
typedef struct p* q*;
int main()
{
    struct p p1[] = {1, 92, 3, 94, 5, 96};
    q ptr1 = p1;
    printf("%d\n", ptr1->x);
}

A. Compile time error

B. 1

C. Undefined behaviour

D. Segmentation fault

Answer: Option A


This Question Belongs to C Program >> Structure And Union

Join The Discussion

Related Questions on Structure and Union