What happens if the following code is compiled on both C and C++?
#include<stdio.h>
struct STRUCT
{
private:
int a;
};
int main()
{
printf("%d\n", (int)sizeof(struct STRUCT));
return 0;
}
#include<stdio.h>
struct STRUCT
{
private:
int a;
};
int main()
{
printf("%d\n", (int)sizeof(struct STRUCT));
return 0;
}
A. The program runs fine and both prints output "HELLO THIS IS STRUCTURE"
B. The program gives an error in case of C but runs perfectly in case of C++
C. The program gives an error in case of C++ but runs perfectly in case of C
D. The program gives an error in case of both C and C++
Answer: Option B
Join The Discussion