adplus-dvertising
frame-decoration

Question

What will be the output of the program?
#include<stdio.h>
#include<stdlib.h>

union employee
{
    char name[15];
    int age;
    float salary;
};
const union employee e1;

int main()
{
    strcpy(e1.name, "K");
    printf("%s %d %f", e1.name, e1.age, e1.salary);
    return 0;
}

a.

Error: RValue required

b.

Error: cannot convert from 'const int *' to 'int *const'

c.

Error: LValue required in strcpy

d.

No error

Answer: (d).No error

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What will be the output of the program?