1.

What will be the output of the following C code?
#include <stdio.h>
struct Calc
{
int m;
int n;
};
int main()
{
struct Calc c = {10};
struct Calc c1 = {11};
if(c == c1)
printf("Equal n");
else
printf("Not Equal n");
}

A. Equal
B. Not Equal
C. Garbage value
D. Compilation Error
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs