-
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");
}
-
- Equal
- Not Equal
- Garbage value
- Compilation Error
- None of these
Correct Option: D
Compilation Error