Examveda

What will be the output of the following C code?
#include <stdio.h>
struct point
{
    int x;
    int y;
};
int main()
{
    struct point p = {1};
    struct point p1 = {1};
    if(p == p1)
        printf("equal\n");
    else
        printf("not equal\n");
}

A. Compile time error

B. equal

C. depends on the standard

D. not equal

Answer: Option A


This Question Belongs to C Program >> Structure And Union

Join The Discussion

Related Questions on Structure and Union